保定网站设计制作公司,有经验的中山网站建设,怎么做网上卖货,免费信息发布文章目录 一、ns2安装1、更新系统源2、准备工作3、下载安装包4、安装5、问题① 问题1② 问题2③ 问题3 6、安装成功7、环境配置 二、nam安装1、安装2、问题 三、实例 一、ns2安装
1、更新系统源
sudo apt-get update
sudo apt-get upgrade2、准备工作
sudo apt-get install … 文章目录 一、ns2安装1、更新系统源2、准备工作3、下载安装包4、安装5、问题① 问题1② 问题2③ 问题3 6、安装成功7、环境配置 二、nam安装1、安装2、问题 三、实例 一、ns2安装
1、更新系统源
sudo apt-get update
sudo apt-get upgrade2、准备工作
sudo apt-get install build-essential
sudo apt-get install tcl8.5 tcl8.5-dev tk8.5 tk8.5-dev
sudo apt-get install libxmu-dev libxmu-headers3、下载安装包
官网下载地址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/local
sudo mv ./ns-allinone-2.35 ./ns2
sudo chown -R hadoop:hadoop ./ns2
cd ns2
./install5、问题
① 问题1
linkstate/ls.h:137:20: note: use ‘this-erase’ instead
make: *** [linkstate/ls.o] Error 1
Ns 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.h
230行hash - hash_o
sudo vim ns-2.35/mdart/mdart_adp.cc
108行hash - hash_o
396行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 ~/.bashrc
source ~/.bashrc加入一下配置
export NS_HOME/usr/local/ns2
export TK_HOME$NS_HOME/tk8.5.10
export TCl_HOME$NS_HOME/tcl8.5.10export PATH$PATH:$NS_HOME/bin:$TK_HOME/unix:$TCL_HOME/unix
export LD_LIBRARY_PATH$NS_HOME/otcl-1.14:$NS_HOME/lib
export TCL_LIBRARY$TCL_HOME/library输入 ns进入成功
二、nam安装
1、安装
cd /usr/local/ns2/nam-1.15
./configure
make
sudo make install2、问题
configure: error: Installation of tcl seems incomplete or cant be found automatically.
Please correct the problem by telling configure where tcl is
using the argument --with-tcl/path/to/package
(perhaps after installing it),
or the package is not required, disable it with --with-tclno.解决
sudo ./configure --with-tcl/home/文件目 录/ns/tcl8.5.10 --with-tcl-ver8.5.10 --with-tk/home/文件目录/ns/tk8.5.10 --with-tk-ver8.5.10三、实例
cd /usr/local/ns2/ns-2.35/tcl/ex
ns simple.tcl