Windows XP Windows 7 Windows 2003 Windows Vista Windows教程綜合 Linux 系統教程
Windows 10 Windows 8 Windows 2008 Windows NT Windows Server 電腦軟件教程
 Windows教程網 >> Linux系統教程 >> 關於Linux >> Ubuntu安裝Nox後編譯make報錯怎麼辦?

Ubuntu安裝Nox後編譯make報錯怎麼辦?

日期:2017/1/25 10:42:08      編輯:關於Linux

  在Ubuntu系統操作中,安裝Nox後編譯make出錯,那麼遇到這個問題該怎麼辦呢?下面小編就給大家介紹下Ubuntu安裝Nox時make出錯的解決方法,感興趣的朋友不妨來了解下吧。

 Ubuntu安裝Nox後編譯make報錯怎麼辦?

  在Ubuntu下安裝nox,make出錯如下:

  》》》》 collect2: ld returned 1 exit status

  》》》》 make[3]: *** [nox_core] Error 1

  》》》》 make[3]: Leaving directory `/usr/nox/build/src‘

  》》》》 make[2]: *** [all-recursive] Error 1

  》》》》 make[2]: Leaving directory `/usr/nox/build/src’

  》》》》 make[1]: *** [all-recursive] Error 1

  》》》》 make[1]: Leaving directory `/usr/nox/nox13oflib/build‘

  》》》》 make: *** [all] Error 2經過查資料,在參考文獻【1】發現是因為nox只能在boost1.50以上的版本才能編譯成功,而Ubuntu12.10版本的boost版本為1.42。所以要更新boost,采取的方法是到boost官網下載源碼並且編譯。

  下面列出簡要的安裝過程

  安裝虛擬機:OpenFlow1.3_BiangHoo

  IP:10.10.134.124

  OS: ubuntu 12.10LTS

  nox安裝:

  安裝相關依賴包:

  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官網下載源碼並且編譯。我下載的是1.55版本。然後將boost安裝到/usr/local/目錄下

  即

  。/bootstrap.sh --prefix=/usr/local/boost

  然後

  。/b2 install

  接著運行ldconfig使相關的庫生效

  然後下載nox源碼

  git clone git://github.com/noxrepo/nox

  cd nox

  。/boot.sh

  mkdir build

  cd build

  。。/。/configure --with-boost=/usr/local/boost #boost的安裝位置

  make

  make install

  即可安裝成功

  啟動nox

  cd PATH_TO_NOX/nox/build/src

  。/nox_core -i ptcp:6633

  上面就是Ubuntu安裝Nox後編譯make不通過的方法介紹了,如果你不會安裝Nox,又或者安裝好後無法通過make,那麼可嘗試使用本文介紹的方法進行解決。

Copyright © Windows教程網 All Rights Reserved