LinuxQuestions.org

LinuxQuestions.org (/questions/)
-   Linux - Newbie (https://www.linuxquestions.org/questions/linux-newbie-8/)
-   -   MOVE vanet simulator problem while saving (https://www.linuxquestions.org/questions/linux-newbie-8/move-vanet-simulator-problem-while-saving-812034/)

rajindersanwal 10-30-2012 06:43 AM

But Where to install SUMO in ubuntu 11.10? In home folder or /usr/local
How to link MOVE with SUMO ... because when I am trying to create map in MOVE .. it says netconvert not found....
Cannot run program "netconvert": error=2, No such file or directory (ERROR MESSAGE GENERATED).
How to remove this error?

rajindersanwal 10-30-2012 06:50 AM

Quote:

Originally Posted by knudfl (Post 4090331)
Well then, time to install sumo to /usr/local/ :
cd sumo-0.12.0/ && sudo make install
.. providing /usr/local/bin/netconvert

And please remember creating the link : cd /usr/local/bin/ ;
sudo ln -s netconvert sumo-netconvert

..

Where to create the Link? In .bashrc file?
Please tell me detail... What does this sudo ln -s netconvert sumo-netconvert command does?
Please Explain...
Thanks..

knudfl 10-30-2012 10:48 AM

# 17
Quote:

Where to create the Link ?
As the text says ( post #12 ) :

cd /usr/local/bin/ && sudo ln -s netconvert sumo-netconvert


Quote:

What does this sudo ln -s netconvert sumo-netconvert command do ?
Then either netconvert or sumo-netconvert can be called by a command.
"ln -s" creates a symlink / symbolic link. See 'man ln'
http://unixhelp.ed.ac.uk/CGI/man-cgi?ln


.

rajindersanwal 11-01-2012 02:31 AM

If you are getting an error while creating a Map in MOVE..
the error will be... Cannot run program "netconvert": error=2, No such file or directory .

To resolve this error ... Take the following steps.

1. Install SUMO in /usr/local/sumo directory...
by running configure, install and make install commands in the terminal.

2. Now go to /usr/local/sumo/bin directory.

change the file permission of netconvert command here using chmod
just type sudo chmod a+x netconvert.

3. Now its time to create symbolic link of netconvert in the /usr/local/bin directory...
we do this to access netconvert of SUMO in the bash shell.

Move to /usr/local/bin directory in the terminal.
Now type sudo ln -s /usr/local/sumo/bin/netconvert netconvert

This will create an symbolic link in /usr/local/bin directory.
Check it using ls -l

Now you can create Map in the MOVE..

Just Remember that MOVE will be in /home/MOVE/MOVE.jar

To run MOVE ... go to its directory.. and type ... java -jar MOVE.jar

chao!!

thirumagal27 02-06-2013 12:16 AM

Sir, we are trying to create dynamic mobility in VANET.. how to do it?
In vehicle movement editor,how the trip should be created?


All times are GMT -5. The time now is 05:47 PM.