Results 1 to 3 of 3
well this is really a stupid thing that i pun on this forum. the matter is that i am a user of ubuntu for the last 2years and for me ...
- 05-23-2011 #1Just Joined!
- Join Date
- Mar 2009
- Posts
- 89
install from source
well this is really a stupid thing that i pun on this forum. the matter is that i am a user of ubuntu for the last 2years and for me its a shame that i cannot install any software from source and have to rely on software centre and upgrades for and software or have to find a Deb file on the internet and then install where as if i knew to install from source then only the source would have been enough for making a software work. can any one please guide me with installation from source.
NB-> i have tried almost all the instructions given in various sites that came after searching in google
- 05-23-2011 #2forum.guy
- Join Date
- May 2004
- Location
- arch linux
- Posts
- 18,099
We have a HowTo you can check out that covers installing from source:
http://www.linuxforums.org/forum/lin...are-linux.htmloz
→ new members/users: read this first | new member faq
→ no private messages requesting computer support - post them on the forums!
→ please use the "report post" button to alert our forum admins to problematic posts rather than responding to them yourself.
- 05-24-2011 #3Linux Guru
- Join Date
- Apr 2009
- Location
- I can be found either 40 miles west of Chicago, or in a galaxy far, far away.
- Posts
- 8,975
Ozar is a master of this stuff. Listen to him.
What you need to do to install from source depends upon the application. First, you need the compiler tools (gcc, make, cmake, autoconf, etc). Second, you need to run the application's "configure" command, assuming it has one (not all do). That is used to build a Makefile that is compatible with your system. Usually, when you are inside the directory where the source code is, you run the command "./configure". Third, assuming you were successful in running the configure script, you will need to build the application using the "make" command. If that is successful, you will need to install it, using the "sudo make install" command, which will copy the executable and any libraries that accompany it to /usr/local/... (/usr/local/bin, /usr/local/lib, etc). Finally, assuming you installed everything into /usr/local, you will need to 1) make sure that /usr/local/bin is in your PATH environment, and 2) /usr/local/lib is in your LD_LIBRARY_PATH if the application installed libraries as well as the executable.
Confused yet? No matter. We'll help you get this sorted out.
Sometimes, real fast is almost as good as real time.
Just remember, Semper Gumbi - always be flexible!


Reply With Quote