NS2安装及入门实例——(ns2.35 / Ubuntu20.04)

文章目录

一、ns2安装

1、更新系统源

bash 复制代码
sudo apt-get update
sudo apt-get upgrade

2、准备工作

bash 复制代码
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-headers

3、下载安装包

官网下载地址:http://www.isi.edu/nsnam/ns/

点击 allinone

点击 current release 2.35

安装 ns-allinone-2.35.tar.gz

4、安装

bash 复制代码
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
./install

5、问题

① 问题1

bash 复制代码
linkstate/ls.h:137:20: note: use 'this->erase' instead
make: *** [linkstate/ls.o] Error 1
Ns make failed!

解决:

bash 复制代码
137行:
void eraseAll() { erase(baseMap::begin(), baseMap::end()); } 
-> 
void eraseAll() { this->erase(baseMap::begin(), baseMap::end()); }

② 问题2

bash 复制代码
mdart/mdart_adp.cc:108:21: error: reference to 'hash' is ambiguous

解决:

bash 复制代码
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

bash 复制代码
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、环境配置

bash 复制代码
vim ~/.bashrc
source ~/.bashrc

加入一下配置:

bash 复制代码
export NS_HOME=/usr/local/ns2
export TK_HOME=$NS_HOME/tk8.5.10
export TCl_HOME=$NS_HOME/tcl8.5.10

输入 ns,进入成功:

二、nam安装

1、安装

bash 复制代码
cd /usr/local/ns2/nam-1.15
./configure
make
sudo make install

2、问题

bash 复制代码
configure: error: Installation of tcl seems incomplete or can't 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-tcl=no.

解决:

bash 复制代码
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

三、实例

bash 复制代码
cd /usr/local/ns2/ns-2.35/tcl/ex
ns simple.tcl
相关推荐
武子康10 小时前
大数据-184 Elasticsearch Doc Values 机制详解:列式存储如何支撑排序/聚合/脚本
大数据·后端·elasticsearch
expect7g10 小时前
Paimon源码解读 -- Compaction-8.专用压缩任务
大数据·后端·flink
良策金宝AI12 小时前
从CAD插件到原生平台:工程AI的演进路径与智能协同新范式
大数据·人工智能
康实训13 小时前
智慧老年实训室建设核心方案
大数据·实训室·养老实训室·实训室建设
min18112345613 小时前
分公司组织架构图在线设计 总部分支管理模板
大数据·人工智能·信息可视化·架构·流程图
周杰伦_Jay13 小时前
【Elasticsearch】核心概念,倒排索引,数据操纵
大数据·elasticsearch·搜索引擎
cai_cai013 小时前
springAlibaba + ollama + es 完成RAG知识库功能
大数据·elasticsearch·搜索引擎
Cx330❀13 小时前
Git 分支管理完全指南:从基础到团队协作
大数据·git·搜索引擎·全文检索
nhdh13 小时前
ELK(elasticsearch-7.6.2,kibana-7-6-2,Logstash-7.6.2)单节点部署
大数据·elk·elasticsearch
新元代码13 小时前
Git在Windows环境下的安装与使用教程
大数据·elasticsearch·搜索引擎