ubuntu下ns2-allinone-2.34安装方法呕心沥血整理版 呕心沥血是什么意思

最近一直在使用ns2,遇到各种问题,需要各种重装,特此整理一下安装过程。
首先下载到ns-allinone-2.34.tar.gz,这个网上到处都是。
然后开始在终端里输入命令,获取ns2需要的相关软件:
sudo apt-get install build-essential
sudo apt-get install tcl8.4 tcl8.4-dev tk8.4 tk8.4-dev
sudo apt-get install libxmu-dev libxmu-headers
sudo apt-get install xorg-dev g++xgraph

sudo apt-get install g++-4.4
===============================

然后解压ns-allinone-2.34.tar.gz,放到你指定的目录。
检查你的gcc版本,如果gcc版本大于4.0(大部分人的都是,建议直接改),要在执行./install之前作出一些修改。
gcc4.0版本以前是用ld-share来生成共享库的,但是到了4.0以上的版本,这个命令改为了gcc-share。
修改命令如下:
cdns-allinone-2.34/otcl-1.13
  
  sudogedit configure.in
  把77行处的
  SHLIB_LD="ld-shared"
  改为
  SHLIB_LD="gcc-shared"
  保存退出,然后
  
  sudogedit configure
  把6304行(Ctrl+i跳到6304行)的
  SHLIB_LD="ld-shared"
  改为
  SHLIB_LD="gcc-shared"
  保存退出,然后
  cdns-allinone-2.34 #到安装目录
  sudo./install #开始安装
如果没有更改直接安装,就会出现这样的错误:
ld:libotcl.so:hiddensymbol`__stack_chk_fail_local'isn'tdefined
ld:finallinkfailed:Badvalue
make:***[libotcl.so]Error1
这只是有可能出现的第一个错误,接下来还有更多的错误等着你!(所以要整理出这么一份东西来。。。)
=======================================================================================
错误一:安装NS2.34过程中出现如下的错误:
tools/ranvar.cc: In member function ‘virtual doubleGammaRandomVariable::value()’:
tools/ranvar.cc:219:70: error: cannot call constructor‘GammaRandomVariable::GammaRandomVariable’ directly
tools/ranvar.cc:219:70:error:for a function-stylecast, remove the redundant ‘::GammaRandomVariable’
make: *** [tools/ranvar.o]错误1
Ns make failed!
See http://www.isi.edu/nsnam/ns/ns-problems.html for problems

这是由于gcc版本提高后对类内部函数调用的简化造成的不兼容,解决方法如下:

在ns-allinone-2.34/ns-2.34/tools文件夹下,找到报错提示中的ranvar.cc文件,打开找到对应的219行删除::GaammaRandomVariable,保存,

即:将219行的

return GammaRandomVariable::GammaRandomVariable(1.0 + alpha_,beta_).value() * pow (u, 1.0 / alpha_);

改为:

return GammaRandomVariable(1.0 + alpha_, beta_).value() * pow(u, 1.0 / alpha_);

然后保存退出,重新安装ns2.

======================================================================================

错误二:

In fileincluded from mac/mac-802_11Ext.cc:66:0:

mac/mac-802_11Ext.h: In member function‘u_int32_t PHY_MIBExt::getHdrLen11()’:

mac/mac-802_11Ext.h:175:19: error: expectedprimary-expression before ‘struct’

mac/mac-802_11Ext.h:175:41: error: ‘dh_body’ wasnot declared in this scope

mac/mac-802_11Ext.h:175:51: error: ‘offsetof’ wasnot declared in this scope

mac/mac-802_11Ext.h:177:3: warning: controlreaches end of non-void function [-Wreturn-type]

make: ***[mac/mac-802_11Ext.o] Error 1


Ns makefailed!

下面是网上找得关于本问题的解决方案:

If you get error like:

mac/mac-802_11Ext.h: In member function ‘u_int32_tPHY_MIBExt::getHdrLen11()’:
mac/mac-802_11Ext.h:176:19: error: expected primary-expressionbefore ‘struct’
mac/mac-802_11Ext.h:176:41: error: ‘dh_body’ was not declared inthis scope
mac/mac-802_11Ext.h:176:51: error: ‘offsetof’ was not declared inthis scope

open that file and add

#include <cstddef>

to the header files.
在ns-allinone-2.34ns-2.34macmac-802_11Ext.h文件添加#include<cstddef>
然后重新安装,就OK了。

=============================================================================

错误三:

mobile/nakagami.cc: In member function ‘virtual doubleNakagami::Pr(PacketStamp*, PacketStamp*, WirelessPhy*)’:

mobile/nakagami.cc:183:73: error: cannot call constructor‘ErlangRandomVariable::ErlangRandomVariable’ directly

mobile/nakagami.cc:183:73:error:for a function-stylecast, remove the redundant ‘::ErlangRandomVariable’

mobile/nakagami.cc:185:67: error: cannot call constructor‘GammaRandomVariable::GammaRandomVariable’ directly

mobile/nakagami.cc:185:67:error:for a function-stylecast, remove the redundant ‘::GammaRandomVariable’

make: *** [mobile/nakagami.o]错误1

Ns make failed!

See http://www.isi.edu/nsnam/ns/ns-problems.html forproblems

解决方法:

在ns-allinone-2.34/ ns-2.34/mobile文件夹下,找到报错提示中的nakagami.cc文件,打开找到对应的183行删除::ErlangRandomVariable,保存,

即:将183行的

resultPower = ErlangRandomVariable::ErlangRandomVariable(Pr/m,int_m).value();

改为:

resultPower = ErlangRandomVariable(Pr/m, int_m).value();

在ns-allinone-2.34/ ns-2.34/mobile文件夹下,找到报错提示中的nakagami.cc文件,打开找到对应的185行删除::GammaRandomVariable,保存,

即:将185行的

resultPower = GammaRandomVariable::GammaRandomVariable(m,Pr/m).value();

改为:

resultPower = GammaRandomVariable(m, Pr/m).value();

重新在ns目录下键入$./install安装,再次出现同类问题时,仿照此次解决方法,找到对应的文件和行数,修改即可。直到安装成功。

=======================================================================================

到这里安装终于成功了,不要忘记添加环境变量
在/home目录下
sudo gedit .bashrc在弹出的窗口文件最后输入exportPATH=$PATH:/home/yourfile/ns-allinone-2.34/bin:/home/yourfile/ns-allinone-2.34/tcl8.4.18/unix:/home/yourfile/ns-allinone-2.34/tk8.4.18/unix
export LD_LIBRARY_PATH=$LD_LIBRARY_PATH:/home/yourfile/ns-allinone-2.34/otcl-1.13:/home/yourfile/ns-allinone-2.34/lib

exportTCL_LIBRARY=$TCL_LIBRARY:/home/yourfile/ns-alllinone-2.34/tcl8.4.18/library

============================

验证(测试)
   (1)打开一个新的终端
   (2)输入ns并回车
   $ns (如果正常,会出现"%"操作提示符,如果显示还没有安装ns2,可以先安装nam,再测试ns)
   (3)输入一段测试用的Tcl脚本代码进行测试
   %puts "Hello World" (输出Hello World字符串)
   Hello World (如果正确,会显示Hello World)
   % (然后跳到下一个"%"提示符等待下一条指令输入)

============================
安装nam
   cd ns-allinone-2.34/nam-1.14
   ./configure
   make
   sudo make install (至此,nam安装好)

在终端中输入nam命令,弹出nam界面则说明nam安装好了


到此ns2终于安装好!!

如果遇到其他安装过程中的问题还会继续更新本文。

PS: ns2相关学习资料网址

百思论坛

http://www.baisi.net/forum-440-1.html

向ns2中添加新的队列算法

http://www.cs.cmu.edu/~istoica/csfq/step-by-step.html#fred-ref

ns2教学手册

http://hpds.ee.ncku.edu.tw/~smallko/ns2/ns2.htm

  

爱华网本文地址 » http://www.aihuau.com/a/25101014/208394.html

更多阅读

ansys10.0安装方法 精 ansys13.0安装方法

ansys10.0安装方法 精——简介ANSYS软件是融结构、流体、电场、磁场、声场分析于一体的大型通用有限元分析软件。由世界上最大的有限元分析软件公司之一的美国ANSYS开发,它能与多数CAD软件接口,实现数据的共享和交换,如Pro/Engineer, N

转载 2型糖尿病不是什么“富贵病” 转载是什么意思

原文地址:2型糖尿病不是什么“富贵病”作者:中医纪元目前,医学上都认为2型糖尿病是因为吃多了高糖、高脂肪、高蛋白食物,同时又缺乏运动,消耗不了那么多营养,长期营养过剩导致的。所以,人们一直把2型糖尿病看作是富贵病。这种观念也是片面

pro-e5.0详细安装方法与破解 peo怎么安装

pro-e5.0详细安装方法与破解——简介 proe是大型模具软件中的巨头,很多工程师只会用而不会安装。其实安装很简单不需要太多复杂的调试,只要跟着下面的步骤一步一步操作你就会觉得它是那么的简单。pro-e5.0详细安装方法与破解——工具

声明:《ubuntu下ns2-allinone-2.34安装方法呕心沥血整理版 呕心沥血是什么意思》为网友骨灰级旳亲睐分享!如侵犯到您的合法权益请联系我们删除