LinuxQuestions.org
Download your favorite Linux distribution at LQ ISO.
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 01-17-2014, 10:56 PM   #1
RadhaGopal
LQ Newbie
 
Registered: Jan 2014
Posts: 16

Rep: Reputation: Disabled
sumo


hi please send complete step by step procedure to install sumo in fedora14 . what actually need to install sumo?how to install?
 
Old 01-18-2014, 02:47 AM   #2
RadhaGopal
LQ Newbie
 
Registered: Jan 2014
Posts: 16

Original Poster
Rep: Reputation: Disabled
please help me to retrieve the error while installing sumo library -fox 1.6.47

Making install in utils
make[1]: Entering directory `/home/it-mml01/lib/fox-1.6.47/utils'
make[2]: Entering directory `/home/it-mml01/lib/fox-1.6.47/utils'
test -z "/usr/local/bin" || /bin/mkdir -p "/usr/local/bin"
/bin/sh ../libtool --mode=install /usr/bin/install -c reswrap '/usr/local/bin'
libtool: install: /usr/bin/install -c reswrap /usr/local/bin/reswrap
/usr/bin/install: cannot create regular file `/usr/local/bin/reswrap': Permission denied
make[2]: *** [install-binPROGRAMS] Error 1
make[2]: Leaving directory `/home/it-mml01/lib/fox-1.6.47/utils'
make[1]: *** [install-am] Error 2
make[1]: Leaving directory `/home/it-mml01/lib/fox-1.6.47/utils'
make: *** [install-recursive] Error 1
 
Old 01-18-2014, 03:16 AM   #3
druuna
LQ Veteran
 
Registered: Sep 2003
Posts: 10,532
Blog Entries: 7

Rep: Reputation: 2405Reputation: 2405Reputation: 2405Reputation: 2405Reputation: 2405Reputation: 2405Reputation: 2405Reputation: 2405Reputation: 2405Reputation: 2405Reputation: 2405
Quote:
Originally Posted by RadhaGopal View Post
please help me to retrieve the error while installing sumo library -fox 1.6.47

Making install in utils
make[1]: Entering directory `/home/it-mml01/lib/fox-1.6.47/utils'
make[2]: Entering directory `/home/it-mml01/lib/fox-1.6.47/utils'
test -z "/usr/local/bin" || /bin/mkdir -p "/usr/local/bin"
/bin/sh ../libtool --mode=install /usr/bin/install -c reswrap '/usr/local/bin'
libtool: install: /usr/bin/install -c reswrap /usr/local/bin/reswrap
/usr/bin/install: cannot create regular file `/usr/local/bin/reswrap': Permission denied
make[2]: *** [install-binPROGRAMS] Error 1
make[2]: Leaving directory `/home/it-mml01/lib/fox-1.6.47/utils'
make[1]: *** [install-am] Error 2
make[1]: Leaving directory `/home/it-mml01/lib/fox-1.6.47/utils'
make: *** [install-recursive] Error 1
It seems that the user running make does not have permissions to create directories in /usr/local/bin

The make install step should probably be done as root. All the steps leading up to it can be done as a regular user.
 
1 members found this post helpful.
Old 01-18-2014, 05:57 AM   #4
ntu929
Member
 
Registered: Jun 2010
Location: India
Distribution: Ubuntu
Posts: 128

Rep: Reputation: 4
Agree with Druuna's advice

Quote:
Originally Posted by druuna View Post
It seems that the user running make does not have permissions to create directories in /usr/local/bin

The make install step should probably be done as root. All the steps leading up to it can be done as a regular user.
I completely agree with it. If you want install software while still being a regular user then you can give super-user's privileges to the regular user using sudo or su command

for example, if you are doing a make install then run the command as follows:-
Code:
sudo or su make install
This will prompt you for the password of regular user.
We could tell you more specific information, if you give us following information:-

1. Name of linux o.s.
2. Version of the operating system.

Last edited by ntu929; 01-18-2014 at 07:43 AM. Reason: change acc to Daruuna's post
 
1 members found this post helpful.
Old 01-18-2014, 06:03 AM   #5
druuna
LQ Veteran
 
Registered: Sep 2003
Posts: 10,532
Blog Entries: 7

Rep: Reputation: 2405Reputation: 2405Reputation: 2405Reputation: 2405Reputation: 2405Reputation: 2405Reputation: 2405Reputation: 2405Reputation: 2405Reputation: 2405Reputation: 2405
Quote:
Originally Posted by ntu929 View Post
Code:
sudo make install
This will prompt you for the password of super-user (root).
No it won't!

It will ask for the password of the user executing that command, which isn't root's password.

Also: not all distro's have sudo configured out-of-the-box so you might need to become root by issuing:
Code:
su
or
Code:
su -
 
1 members found this post helpful.
Old 01-18-2014, 07:20 AM   #6
ntu929
Member
 
Registered: Jun 2010
Location: India
Distribution: Ubuntu
Posts: 128

Rep: Reputation: 4
Quote:
Originally Posted by druuna View Post
No it won't!

It will ask for the password of the user executing that command, which isn't root's password.

Also: not all distro's have sudo configured out-of-the-box so you might need to become root by issuing:
Code:
su
or
Code:
su -
my apologise but again you are right. i will edit my post accordingly.
 
1 members found this post helpful.
Old 01-18-2014, 07:32 AM   #7
RadhaGopal
LQ Newbie
 
Registered: Jan 2014
Posts: 16

Original Poster
Rep: Reputation: Disabled
thank you so much for your replay.really this will help to me
 
Old 01-20-2014, 04:43 AM   #8
RadhaGopal
LQ Newbie
 
Registered: Jan 2014
Posts: 16

Original Poster
Rep: Reputation: Disabled
i got this error when installing gdal.please help me.

geotiff.cpp:34:21: fatal error: xtiffio.h: No such file or directory
compilation terminated.
make[2]: *** [../o/geotiff.lo] Error 1
make[2]: Leaving directory `/usr/local/gdal-1.7.2/frmts/gtiff'
make[1]: *** [gtiff-install-obj] Error 2
make[1]: Leaving directory `/usr/local/gdal-1.7.2/frmts'
make: *** [frmts-target] Error 2
 
Old 01-20-2014, 04:56 AM   #9
RadhaGopal
LQ Newbie
 
Registered: Jan 2014
Posts: 16

Original Poster
Rep: Reputation: Disabled
i got this error when installing proj



proj.Tpo -c jniproj.c -fPIC -DPIC -o .libs/jniproj.o
jniproj.c:52:26: fatal error: org_proj4_PJ.h: No such file or directory
compilation terminated.
make[1]: *** [jniproj.lo] Error 1
make[1]: Leaving directory `/usr/local/proj-4.8.0/src'
make: *** [install-recursive] Error 1
 
Old 01-20-2014, 06:52 AM   #10
druuna
LQ Veteran
 
Registered: Sep 2003
Posts: 10,532
Blog Entries: 7

Rep: Reputation: 2405Reputation: 2405Reputation: 2405Reputation: 2405Reputation: 2405Reputation: 2405Reputation: 2405Reputation: 2405Reputation: 2405Reputation: 2405Reputation: 2405
The last 2 posts don't have enough info to help you in any way.

- what commands are you trying,
- did the configure step return anything special,
etc

Don't just dump an error message. Provide details.

Only comment I can make is that in both cases it seems that a header file cannot be found (xtiffio.h and org_proj4_PJ.h).
 
Old 01-20-2014, 11:18 AM   #11
knudfl
LQ 5k Club
 
Registered: Jan 2008
Location: Copenhagen DK
Distribution: PCLinuxOS2023 Fedora38 + 50+ other Linux OS, for test only.
Posts: 17,511

Rep: Reputation: 3641Reputation: 3641Reputation: 3641Reputation: 3641Reputation: 3641Reputation: 3641Reputation: 3641Reputation: 3641Reputation: 3641Reputation: 3641Reputation: 3641
Installing fox : Read the Fedora posts about sumo here
http://www.linuxquestions.org/questions/tags/sumo/


Installing proj : # yum install proj-devel


-
 
Old 01-21-2014, 12:00 AM   #12
RadhaGopal
LQ Newbie
 
Registered: Jan 2014
Posts: 16

Original Poster
Rep: Reputation: Disabled
we have

fox16-1.6.47-48.1.src.rpm
fox16-devel-1.6.49-52.1.i686.rpm
libfox1_6-1.6.47-28.1.x86_64.rpm
proj-devel-4.7.0-1.el6.i686.rpm
xerces-c-devel-3.1.1-1.fc16.x86_64.rpm
gdal-devel-1.9.0-2.fc17.i686.rpm

whether these version is correct to install SUMO library in fedora 14
 
Old 01-21-2014, 12:55 AM   #13
John VV
LQ Muse
 
Registered: Aug 2005
Location: A2 area Mi.
Posts: 17,621

Rep: Reputation: 2651Reputation: 2651Reputation: 2651Reputation: 2651Reputation: 2651Reputation: 2651Reputation: 2651Reputation: 2651Reputation: 2651Reputation: 2651Reputation: 2651
you CAN NOT !!!!!!!!!! mix different distros and different versions

you have internet so
1)
INSTALL FEDORA 20
then install sumo
Code:
su -
yum install sumo
Quote:

fox16-1.6.47-48.1.src.rpm
fox16-devel-1.6.49-52.1.i686.rpm
libfox1_6-1.6.47-28.1.x86_64.rpm
proj-devel-4.7.0-1.el6.i686.rpm
xerces-c-devel-3.1.1-1.fc16.x86_64.rpm
gdal-devel-1.9.0-2.fc17.i686.rpm
"fox16-1.6.47-48.1.src.rpm" who knows what OS this is for and it is the SRC rpm - this is NOT a program to run
"fox16-devel-1.6.49-52.1.i686.rpm" WHY !!!!!!!!!!!!
you already have the src all you need is to use "rpmbuild" to make the SRC.rpm

"libfox1_6-1.6.47-28.1.x86_64.rpm" that is a 64 bit
you CAN NOT !!!!!! use that on a 32 bit system

"proj-devel-4.7.0-1.el6.i686.rpm"
this is for RHEL6 and NOT FEDORA 14
it is for a DIFFERENT operating system and is 32 bit!

"xerces-c-devel-3.1.1-1.fc16.x86_64.rpm"
that is a 64 bit FEDORA 16 program
YOU CAN NOT USE IT ON FEDORA 14

"gdal-devel-1.9.0-2.fc17.i686.rpm"
that is a 32 bit fedora 17 headers and NOT !!! a program




i am beginning to agree with "k3lt01" in this post here
http://www.linuxquestions.org/questi...2/#post5100083

Last edited by John VV; 01-21-2014 at 12:57 AM.
 
Old 01-21-2014, 02:15 AM   #14
RadhaGopal
LQ Newbie
 
Registered: Jan 2014
Posts: 16

Original Poster
Rep: Reputation: Disabled
@John VV
gdal-devel-1.7.2-5.fc14.i686.rpm
proj-devel-4.7.0-3.fc14.i686.rpm
xerces-c-devel-3.0.1-20.fc14.i686.rpm

these are correct to install sumo libraries in fedora 14 .

---------- Post added 01-21-14 at 03:16 AM ----------

@John vv whether these are correct or not?
 
Old 01-21-2014, 03:28 AM   #15
John VV
LQ Muse
 
Registered: Aug 2005
Location: A2 area Mi.
Posts: 17,621

Rep: Reputation: 2651Reputation: 2651Reputation: 2651Reputation: 2651Reputation: 2651Reputation: 2651Reputation: 2651Reputation: 2651Reputation: 2651Reputation: 2651Reputation: 2651
please use yum
even on 14 a version that is 6 versions out of date
a few of the unsupported mirrors will be still up
Code:
su -
yum install gdal-devel proj-devel xerces-c-devel
but you will likely need to install rpmforge repo to install the above


And those are ONLY the headers
there are NO .so's and no runnable programs in the case of GDAL
there is NO "gdal_translate" " gdalwarp" "gdalinfo"

GDAL also needs pythonhome set for the VERSION it was built against

i would recommend using the current fwtools 3 for installing GDAL & proj4
( i use GDAL almost every day )
http://fwtools.maptools.org/
http://fwtools.maptools.org/linux-experimental.html

proj4 is already part of it



but you will likely need to install rpmforge repo to install the above

PLEASE READ !!!!! the documentation on fedora
-- mind you the antique fedora 14 docs are old
http://docs.fedoraproject.org/en-US/...tes/index.html
"Software Management Guide"
http://docs.fedoraproject.org/en-US/...ide/index.html


and READ !!!! mjmwired's page
http://www.mjmwired.net/resources/mjm-fedora-f14.html
mind you 14 is 6 versions and 3 +years out of date

also you might want to post on the fedora
Legacy " End Of Life" forum
http://www.forums.fedoraforum.org/forumdisplay.php?f=75
 
  


Reply

Tags
sumo, sumo-doc#29, sumo0


Thread Tools Search this Thread
Search this Thread:

Advanced Search

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
SUMO.... lavsjk Linux - Newbie 29 03-13-2014 03:33 PM
sumo installation Uvarani Linux - Newbie 16 01-24-2014 03:27 AM
concerning SUMO installation sunrise Linux - Newbie 13 12-02-2013 12:50 PM
install sumo glitter Linux - Newbie 9 08-31-2013 04:04 PM
Download sumo 0.17.1 ibaa Linux - Newbie 1 05-30-2013 09:02 AM

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

All times are GMT -5. The time now is 02:16 AM.

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