Changes between Initial Version and Version 1 of GeniExperimenter/NoxAndF8


Ignore:
Timestamp:
07/06/11 19:50:29 (13 years ago)
Author:
nriga@bbn.com
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • GeniExperimenter/NoxAndF8

    v1 v1  
     1[PageOutline]
     2
     3This page describes how to run a Nox Controller the Zaky release as of March 2011 on a MyPLC host running Fedora 8.
     4
     5These instructions are based in the [http://noxrepo.org/noxwiki/index.php/NOX_Installation nox wiki].
     6In more detail the steps to take after reserving a host and login are
     7   1. Install Development tools
     8   {{{
     9   sudo yum groupinstall "Development Tools"
     10   }}}
     11   2. Get and install gec 4.2
     12   {{{
     13wget http://mirrors-us.seosue.com/gcc/releases/gcc-4.2.4/gcc-4.2.4.tar.bz2
     14tar -xvjpf gcc-4.2.4.tar.bz2
     15mkdir gcc-obj
     16cd gcc-obj
     17../gcc-4.2.4/configure
     18make
     19sudo make install
     20   }}}
     21   3. Install necessary Nox dependencies
     22   {{{
     23   sudo yum install  python-twisted libpcap-devel git-core openssl-devel boost-devel
     24   }}}
     25   4. Get and compile nox
     26   {{{
     27git clone git://noxrepo.org/nox
     28cd nox
     29./boot.sh
     30cd ../
     31mkdir nox_build
     32cd nox_build
     33../nox/configure
     34make -j 5
     35   }}}
     36
     37   }}}
     38   }}}