Changes between Version 9 and Version 10 of GENIExperimenter/Tutorials/SystematicExprCaseStudy/InstallSoftware


Ignore:
Timestamp:
05/06/16 13:04:53 (8 years ago)
Author:
lnevers@bbn.com
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • GENIExperimenter/Tutorials/SystematicExprCaseStudy/InstallSoftware

    v9 v10  
    111111 * Install Dependencies
    112112{{{
    113 $sudo apt-get update
    114 $sudo apt-get install libssl-dev
    115 $sudo apt-get install ncurses-dev
    116 $sudo apt-get install libpcap-dev
    117 $sudo apt-get install g++ traceroute
    118 $sudo apt-get install scons
     113 $ sudo apt-get update
     114 $ sudo apt-get install libssl-dev
     115 $ sudo apt-get install ncurses-dev 
     116 $ sudo apt-get install libpcap-dev
     117 $ sudo apt-get install g++ traceroute
     118 $ sudo apt-get install scons
    119119}}}
    120120 * Download XORP source files
    121121{{{
    122 $cd ~/
    123 $wget http://www.xorp.org/releases/current/xorp-1.8.5-src.tar.bz2
    124 $tar jvxf xorp-1.8.5-src.tar.bz2
     122 $ cd
     123 $ wget http://www.xorp.org/releases/current/xorp-1.8.5-src.tar.bz2
     124 $ tar jvxf xorp-1.8.5-src.tar.bz2
    125125}}}
    126126
    127127 * Compile and build `XORP`
    128128{{{
    129 $cd xorp
    130 $scons
    131 $sudo scons install
     129 $ cd xorp
     130 $ scons
     131 $ sudo scons install
    132132}}}
    133133
    134134 * Verify the `XORP` installation (Optional)
    135135{{{
    136 $scons check
     136 $ scons check
    137137}}}
    138138
    139139
    140 The whole installation process without the last optional step will take about 40 minutes to complete. Running `scons check` will probably take another hour to complete. If everything goes smoothly, you should be able to find the directory `xorp` under path `/usr/local/`.
     140The entire installation process without the last optional step will take about 40 minutes to complete. Running `scons check` will probably take another hour to complete. If everything goes smoothly, you should be able to find the directory `xorp` under path `/usr/local/`.
    141141
    142142