Changes between Initial Version and Version 1 of HowTo/RunNoxInFedora8


Ignore:
Timestamp:
09/16/11 20:12:23 (13 years ago)
Author:
nriga@bbn.com
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • HowTo/RunNoxInFedora8

    v1 v1  
     1
     2
     3This page describes how to run a Nox OpenFlow controller(Zaku release as of March 2011) on a MyPLC host running Fedora 8.
     4
     5These instructions derive from the Ubuntu installation instructions at the [http://noxrepo.org/noxwiki/index.php/NOX_Installation nox wiki].
     6In more detail the steps to take after reserving a host and logging in are :
     7   1. Install Development tools
     8   {{{
     9   sudo yum groupinstall "Development Tools"
     10   }}}
     11   2. Get and install gcc 4.2.4
     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 Nox dependencies
     22   {{{
     23   sudo yum install  python-twisted libpcap-devel git-core openssl-devel boost-devel python-simplejson
     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   }}}