NS2安装及入门实例——(ns2.35 / Ubuntu20.04)
时间:2024-04-11 13:45:25 来源:网络cs 作者:利杜鹃 栏目:卖家故事 阅读:
阅读本书更多章节>>>>
文章目录
一、ns2安装1、更新系统源2、准备工作3、下载安装包4、安装5、问题① 问题1② 问题2③ 问题3 6、安装成功7、环境配置 二、nam安装1、安装2、问题 三、实例
一、ns2安装
1、更新系统源
sudo apt-get updatesudo apt-get upgrade
2、准备工作
sudo apt-get install build-essentialsudo apt-get install tcl8.5 tcl8.5-dev tk8.5 tk8.5-devsudo apt-get install libxmu-dev libxmu-headers
3、下载安装包
官网下载地址:http://www.isi.edu/nsnam/ns/
点击 allinone
点击 current release 2.35
安装 ns-allinone-2.35.tar.gz
4、安装
sudo tar -zxvf ~/下载/ns-allinone-2.35.tar.gz -C /usr/local/cd /usr/localsudo mv ./ns-allinone-2.35 ./ns2sudo chown -R hadoop:hadoop ./ns2cd ns2./install
5、问题
① 问题1
linkstate/ls.h:137:20: note: use ‘this->erase’ insteadmake: *** [linkstate/ls.o] Error 1Ns make failed!
解决:
137行:void eraseAll() { erase(baseMap::begin(), baseMap::end()); } -> void eraseAll() { this->erase(baseMap::begin(), baseMap::end()); }
② 问题2
mdart/mdart_adp.cc:108:21: error: reference to ‘hash’ is ambiguous
解决:
sudo vim ns-2.35/mdart/mdart_function.h230行:hash -> hash_osudo vim ns-2.35/mdart/mdart_adp.cc108行:hash -> hash_o396行:hash -> hash_o
③ 问题3
In file included from common/tkAppInit.cc:57:0:./bitmap/play.xbm:5:74: error: narrowing conversion of ‘252’ from ‘int’ to ‘char’ inside
解决:全部加上 (char)
6、安装成功
7、环境配置
vim ~/.bashrcsource ~/.bashrc
加入一下配置:
export NS_HOME=/usr/local/ns2export TK_HOME=$NS_HOME/tk8.5.10export TCl_HOME=$NS_HOME/tcl8.5.10export PATH=$PATH:$NS_HOME/bin:$TK_HOME/unix:$TCL_HOME/unixexport LD_LIBRARY_PATH=$NS_HOME/otcl-1.14:$NS_HOME/libexport TCL_LIBRARY=$TCL_HOME/library
输入 ns,进入成功:
二、nam安装
1、安装
cd /usr/local/ns2/nam-1.15./configuremakesudo make install
2、问题
configure: error: Installation of tcl seems incomplete or can't be found automatically.Please correct the problem by telling configure where tcl isusing the argument --with-tcl=/path/to/package(perhaps after installing it),or the package is not required, disable it with --with-tcl=no.
解决:
sudo ./configure --with-tcl=/home/文件目 录/ns/tcl8.5.10 --with-tcl-ver=8.5.10 --with-tk=/home/文件目录/ns/tk8.5.10 --with-tk-ver=8.5.10
三、实例
cd /usr/local/ns2/ns-2.35/tcl/exns simple.tcl
阅读本书更多章节>>>>
本文链接:https://www.kjpai.cn/gushi/2024-04-11/157081.html,文章来源:网络cs,作者:利杜鹃,版权归作者所有,如需转载请注明来源和作者,否则将追究法律责任!
版权声明:本文内容由互联网用户自发贡献,该文观点仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
上一篇:C语言——扫雷游戏实现(超详解)
下一篇:返回列表