diff --git a/doc/tutorial/source/getting-started.rst b/doc/tutorial/source/getting-started.rst index d480a2fa7..b39df5e2c 100644 --- a/doc/tutorial/source/getting-started.rst +++ b/doc/tutorial/source/getting-started.rst @@ -96,15 +96,15 @@ get a copy of a release by typing the following into your Linux shell $ cd $ mkdir workspace $ cd workspace - $ wget http://www.nsnam.org/release/ns-allinone-3.22.tar.bz2 - $ tar xjf ns-allinone-3.22.tar.bz2 + $ wget http://www.nsnam.org/release/ns-allinone-3.23.tar.bz2 + $ tar xjf ns-allinone-3.23.tar.bz2 -If you change into the directory ``ns-allinone-3.22`` you should see a +If you change into the directory ``ns-allinone-3.23`` you should see a number of files:: $ ls - bake constants.py ns-3.22 README - build.py netanim-3.105 pybindgen-0.16.0.886 util.py + bake constants.py ns-3.23 README + build.py netanim-3.106 pybindgen-0.17.0.886 util.py You are now ready to build the base |ns3| distribution. @@ -163,10 +163,10 @@ distribution of your choice. There are a few configuration targets available: -1. ``ns-3.22``: the module corresponding to the release; it will download +1. ``ns-3.23``: the module corresponding to the release; it will download components similar to the release tarball. 2. ``ns-3-dev``: a similar module but using the development code tree -3. ``ns-allinone-3.22``: the module that includes other optional features +3. ``ns-allinone-3.23``: the module that includes other optional features such as click routing, openflow for |ns3|, and the Network Simulation Cradle 4. ``ns-3-allinone``: similar to the released version of the allinone @@ -184,7 +184,7 @@ code either by inspection of the repository list or by going to the `"ns-3 Releases" `_ web page and clicking on the latest release link. We'll proceed in -this tutorial example with ``ns-3.22``. +this tutorial example with ``ns-3.23``. We are now going to use the bake tool to pull down the various pieces of |ns3| you will be using. First, we'll say a word about running bake. @@ -210,7 +210,7 @@ full builds of ns-3-allinone (with the optional packages) typically do. Step into the workspace directory and type the following into your shell:: - $ ./bake.py configure -e ns-3.22 + $ ./bake.py configure -e ns-3.23 Next, we'l ask bake to check whether we have enough tools to download various components. Type:: @@ -256,17 +256,17 @@ should yield something like:: >> Searching for system dependency pygoocanvas - OK >> Searching for system dependency python-dev - OK >> Searching for system dependency pygraphviz - OK - >> Downloading pybindgen-0.16.0.886 - OK + >> Downloading pybindgen-0.17.0.886 - OK >> Searching for system dependency g++ - OK >> Searching for system dependency qt4 - OK - >> Downloading netanim-3.105 - OK - >> Downloading ns-3.22 - OK + >> Downloading netanim-3.106 - OK + >> Downloading ns-3.23 - OK The above suggests that three sources have been downloaded. Check the ``source`` directory now and type ``ls``; one should see:: $ ls - netanim-3.105 ns-3.22 pybindgen-0.16.0.886 + netanim-3.106 ns-3.23 pybindgen-0.17.0.886 You are now ready to build the |ns3| distribution. @@ -285,7 +285,7 @@ native |ns3| build system, Waf, to be introduced later in this tutorial. If you downloaded using a tarball you should have a directory called something like -``ns-allinone-3.22`` under your ``~/workspace`` directory. +``ns-allinone-3.23`` under your ``~/workspace`` directory. Type the following:: $ ./build.py --enable-examples --enable-tests @@ -301,7 +301,7 @@ You will see lots of typical compiler output messages displayed as the build script builds the various pieces you downloaded. Eventually you should see the following:: - Waf: Leaving directory `/path/to/workspace/ns-allinone-3.22/ns-3.22/build' + Waf: Leaving directory `/path/to/workspace/ns-allinone-3.23/ns-3.23/build' 'build' finished successfully (6m25.032s) Modules built: @@ -323,7 +323,7 @@ following:: brite click openflow visualizer - Leaving directory `./ns-3.22' + Leaving directory `./ns-3.23' Regarding the portion about modules not built:: @@ -349,9 +349,9 @@ may continue to use it to build |ns3|. Type and you should see something like:: - >> Building pybindgen-0.16.0.886 - OK - >> Building netanim-3.105 - OK - >> Building ns-3.22 - OK + >> Building pybindgen-0.17.0.886 - OK + >> Building netanim-3.106 - OK + >> Building ns-3.23 - OK *Hint: you can also perform both steps, download and build by calling 'bake.py deploy'.*