我已经设置了一个Linux服务器来运行静脉/ omnet ++模拟。我这样做的主要原因是减少模拟时间。服务器运行的是Ubuntu Server 14.04.3,OMNET ++ 4.6,SUMO 0.22.0和VEINS 4a2。安装OMNET和SUMO后,我更改为VEINS根目录并运行./configure
和make MODE=release -j 32
。这生成了一个可执行的veins-4a2
文件,我试图以:
./veins-4a2 -u Cmdenv -f examples/veins/omnetpp.ini //since omnetpp.ini is under examples folder
但是我收到了以下错误:
Loading NED files from /home/simulator/veins-4a2/examples/veins: 1
<!> Error: NED type `RSUExampleScenario' could not be fully resolved, due to a missing base type or interface.
在运行上一个命令之前,我在机器上执行了另一个ssh来运行命令./sumo-launchd.py -vv -c sumo
。
我的问题是错误所指的是什么?我在安装/配置期间是否错过了任何步骤?我正在做正确的make
步骤吗?