LinuxQuestions.org
Share your knowledge at the LQ Wiki.
Home Forums Tutorials Articles Register
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Newbie
User Name
Password
Linux - Newbie This Linux forum is for members that are new to Linux.
Just starting out and have a question? If it is not in the man pages or the how-to's this is the place!

Notices


Reply
  Search this Thread
Old 07-15-2014, 03:22 AM   #1
praveensalagar
LQ Newbie
 
Registered: Jul 2014
Posts: 6

Rep: Reputation: Disabled
sumo,move nd ns2.35 installation in ubuntu 12.4


sir i need to install SUMO,MOVE and NS2.35 in ubuntu 12.04. so i need it al the deatis can u please mail me here is my mail id praveensalagar25@gmail.com
 
Old 07-15-2014, 09:00 AM   #2
TB0ne
LQ Guru
 
Registered: Jul 2003
Location: Birmingham, Alabama
Distribution: SuSE, RedHat, Slack,CentOS
Posts: 26,636

Rep: Reputation: 7965Reputation: 7965Reputation: 7965Reputation: 7965Reputation: 7965Reputation: 7965Reputation: 7965Reputation: 7965Reputation: 7965Reputation: 7965Reputation: 7965
Quote:
Originally Posted by praveensalagar View Post
sir i need to install SUMO,MOVE and NS2.35 in ubuntu 12.04. so i need it al the deatis can u please mail me here is my mail id
Please see the LQ Rules about text-speak..it isn't a good thing, so spell out your words. Also, the LQ Rules are clear about posting the same question twice, and hijacking another persons thread. Also, this is NOT the place to come to get free, personalized, one-on-one email tech support...participate in the forum and share knowledge, but we're not going to email you answers.

Also, this question has been asked and answered on this site many times; doing a search first will often times get you an answer, without having to post a question:
http://www.linuxquestions.org/questi...-a-4175476162/
 
1 members found this post helpful.
Old 07-23-2014, 02:22 PM   #3
praveensalagar
LQ Newbie
 
Registered: Jul 2014
Posts: 6

Original Poster
Rep: Reputation: Disabled
hello i have got some errors while running the ./configure like
praveen@praveen-Inspiron-5520: /usr/local/src/sumo-0.12.3 $configure
configure: error --with--xeerces-libraries=DIR


and after calling $make
praveen@praveen-Inspiron-5520: /usr/local/src/sumo-0.12.3 $make
make:**no targets specified and no makefile found stop
 
Old 07-23-2014, 03:00 PM   #4
TB0ne
LQ Guru
 
Registered: Jul 2003
Location: Birmingham, Alabama
Distribution: SuSE, RedHat, Slack,CentOS
Posts: 26,636

Rep: Reputation: 7965Reputation: 7965Reputation: 7965Reputation: 7965Reputation: 7965Reputation: 7965Reputation: 7965Reputation: 7965Reputation: 7965Reputation: 7965Reputation: 7965
Quote:
Originally Posted by praveensalagar View Post
hello i have got some errors while running the ./configure like
praveen@praveen-Inspiron-5520: /usr/local/src/sumo-0.12.3 $configure
configure: error --with--xeerces-libraries=DIR


and after calling $make
praveen@praveen-Inspiron-5520: /usr/local/src/sumo-0.12.3 $make
make:**no targets specified and no makefile found stop
Right, the make won't work until the CONFIGURE works. The configure step is telling you very clearly that xerces-libraries directory isn't defined, and its telling you what to supply on the "./configure" command line. Where are those libraries? Put the path there, and run configure again...until it finishes successfully, you won't be able to run make.

Also, did you reference the other thread I posted initially, that had the complete instructions??? Did you follow them?
 
Old 07-23-2014, 03:10 PM   #5
praveensalagar
LQ Newbie
 
Registered: Jul 2014
Posts: 6

Original Poster
Rep: Reputation: Disabled
Installation:

Decompress the tarball:

$ tar -xzvf sumo-src-0.12.3.tar.gz

Move the decompressed directory to '/usr/local/src':

$ sudo mv -v sumo-0.12.3 /usr/local/src

Enter the source directory and call configure, make and make install:

$ cd /usr/local/src/sumo-0.12.3


$ ./configure --with-fox-includes=/usr/include/fox-1.6 \
--with-gdal-includes=/usr/include/gdal --with-proj-libraries=/usr \
--with-gdal-libraries=/usr --with-proj-gdal


$ make
$ sudo make install


To call SUMO in the command line, type:

$ sumo

or

[B]$ sumo-gui

sir i have followed this commands can you please tell me little bit in details
 
Old 07-23-2014, 03:19 PM   #6
praveensalagar
LQ Newbie
 
Registered: Jul 2014
Posts: 6

Original Poster
Rep: Reputation: Disabled
or i need to instal these libraries

$ sudo apt-get install libgdal1-dev proj libxerces-c2-dev
$ sudo apt-get install libfox-1.6-dev libgl1-mesa-dev libglu1-mesa-dev


Ubuntu 12.04 does not ship with libgdal.so, only with libgdal1.7.0.so. So, create a symbolic link:

$ sudo ln -s /usr/lib/libgdal1.7.0.so /usr/lib/libgdal.so
 
Old 08-20-2014, 02:46 AM   #7
praveensalagar
LQ Newbie
 
Registered: Jul 2014
Posts: 6

Original Poster
Rep: Reputation: Disabled
hello i need to install SUMO-0.12.3 and MOVE in Ubuntu.. so plzz send me the links
 
Old 08-20-2014, 08:39 AM   #8
TB0ne
LQ Guru
 
Registered: Jul 2003
Location: Birmingham, Alabama
Distribution: SuSE, RedHat, Slack,CentOS
Posts: 26,636

Rep: Reputation: 7965Reputation: 7965Reputation: 7965Reputation: 7965Reputation: 7965Reputation: 7965Reputation: 7965Reputation: 7965Reputation: 7965Reputation: 7965Reputation: 7965
Quote:
Originally Posted by praveensalagar View Post
or i need to instal these libraries

$ sudo apt-get install libgdal1-dev proj libxerces-c2-dev
$ sudo apt-get install libfox-1.6-dev libgl1-mesa-dev libglu1-mesa-dev


Ubuntu 12.04 does not ship with libgdal.so, only with libgdal1.7.0.so. So, create a symbolic link:

$ sudo ln -s /usr/lib/libgdal1.7.0.so /usr/lib/libgdal.so
Since the configure is failing because you're missing the libxerces files, isn't is VERY OBVIOUS that you would need to install them to make things work??? The link provided tells you specifically what to do, and you were even told that the message you got during configure, is so you can specify an alternate directory if you need to. This was all in the error messages, and is all very clear.
Quote:
Originally Posted by praveensalagar
hello i need to install SUMO-0.12.3 and MOVE in Ubuntu.. so plzz send me the links
Read the LQ Rules; do NOT use text speak, and spell out your words, as you've been told/asked before. And AGAIN, we are NOT going to email you 'links'...if you want links, try Google. If not, follow the instructions and messages.
 
  


Reply

Tags
ns2, sumo



Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off



Similar Threads
Thread Thread Starter Forum Replies Last Post
[SOLVED] installing sumo and move on ubuntu umair ahmed Linux - Newbie 77 12-04-2015 01:41 AM
How to Install MOVE and SUMO on ubuntu 12.10 with ns2.35 sumegha13 Linux - Software 11 03-21-2014 01:35 AM
installation sumo-0.14.0 on ubuntu 10.10 nourunix Linux - Newbie 2 02-04-2014 10:09 AM
helping about using MOVE of SUMO 0.15 on Ubuntu 12.04 mrhuy_1708 Ubuntu 0 07-28-2012 11:56 AM
Sumo installation in Ubuntu yashu Linux - Networking 4 04-04-2012 03:53 AM

LinuxQuestions.org > Forums > Linux Forums > Linux - Newbie

All times are GMT -5. The time now is 06:28 PM.

Main Menu
Advertisement
My LQ
Write for LQ
LinuxQuestions.org is looking for people interested in writing Editorials, Articles, Reviews, and more. If you'd like to contribute content, let us know.
Main Menu
Syndicate
RSS1  Latest Threads
RSS1  LQ News
Twitter: @linuxquestions
Open Source Consulting | Domain Registration