⑴在Ubuntu系统操作中,安装Nox后编译make出错,那么遇到这个问题该怎么办呢?下面小编就给大家介绍下Ubuntu安装Nox时make出错的解决方法,感兴趣的朋友不妨来了解下吧。
⑵在Ubuntu下安装nox,make出错如下:
⑶》》》》 collect: ld returned exit status
⑷》》》》 make[]: *** [nox_core] Error
⑸》》》》 make[]: Leaving directory `/usr/nox/build/src‘
⑹》》》》 make[]: *** [all-recursive] Error
⑺》》》》 make[]: Leaving directory `/usr/nox/build/src’
⑻》》》》 make[]: *** [all-recursive] Error
⑼》》》》 make[]: Leaving directory `/usr/nox/noxoflib/build‘
⑽》》》》 make: *** [all] Error 经过查资料,在参考文献【】发现是因为nox只能在boost.以上的版本才能编译成功,而Ubuntu.版本的boost版本为.。所以要更新boost,采取的方法是到boost官网下载源码并且编译。
⑾下面列出简要的安装过程
⑿安装虚拟机:OpenFlow._BiangHoo
⒀OS: ubuntu .LTS
⒁安装相关依赖包:
⒂sudo apt-get install autoconf automake g++ libtool swig make git-core libboost-dev libboost-test-dev libboost-filesystem-dev libssl-dev libpcap-dev python-twisted python-simplejson python-dev
⒃还要安装libboost-all-dev 和libttb-dev
⒄apt-get install libboost-all-dev libttb-dev
⒅然后到到boost官网下载源码并且编译。我下载的是.版本。然后将boost安装到/usr/local/目录下
⒆。/bootstrap.sh --prefix=/usr/local/boost
⒇。/b install
⒈接着运行ldconfig使相关的库生效
⒉然后下载nox源码
⒊git clone
⒋。/boot.sh
⒌mkdir build
⒍cd build
⒎。。/。/configure --with-boost=/usr/local/boost #boost的安装位置
⒏make install
⒐cd PATH_TO_NOX/nox/build/src
⒑。/nox_core -i ptcp:
⒒上面就是Ubuntu安装Nox后编译make不通过的方法介绍了,如果你不会安装Nox,又或者安装好后无法通过make,那么可尝试使用本文介绍的方法进行解决。