Changes between Version 1 and Version 2 of GENIEducation/SampleAssignments/VLCDashTutorial/Execute


Ignore:
Timestamp:
08/29/13 10:17:44 (11 years ago)
Author:
divyashri.bhat@gmail.com
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • GENIEducation/SampleAssignments/VLCDashTutorial/Execute

    v1 v2  
    2222 - 2.1.2 Login to nodes VM, VM-0, VM-1, VM-2 and execute the following script
    2323{{{
     24#!/bin/bash
    2425ovs-vsctl add-br test
    2526ovs-vsctl add-port test eth1
     
    3031}}}
    3132
     33{{{
     34#!/bin/bash
     35
     36apt-get update
     37apt-get -y install apache2
     38apt-get -y install apache2-threaded-dev
     39
     40apache2ctl restart
     41
     42mkdir /root/DASH_BuckBunny
     43
     44curl http://emmy9.casa.umass.edu/wget_download.sh -o /root/wget_download.sh
     45
     46chmod +x /root/wget_download.sh
     47
     48sh /root/wget_download.sh
     49}}}
     50
    3251== 2.2 ==