Results 1 to 4 of 4
hello,
How to install software from source code ?
thanks...
- 02-19-2009 #1Just Joined!
- Join Date
- Feb 2009
- Posts
- 19
How to install software from source code
hello,
How to install software from source code ?
thanks
- 02-19-2009 #2Just Joined!
- Join Date
- Feb 2009
- Posts
- 54
You need to compile the code. Read the README or INSTALL or BUILD instructions that came with the software and follow as they suggest. You might have to install the compilers if your machine does not have the dev packages installed. Try "rpm -qa | grep gcc" to check.
- 02-19-2009 #3forum.guy
- Join Date
- May 2004
- Location
- arch linux
- Posts
- 18,096
Here's a HowTo that might help you further:
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.
- 02-20-2009 #4
well, extract the contents of the tar package then read the "readme". nad then the "install". the most possible way is:
# ./configure
# make
# su
# make install
the install file may ask you to do it differently, if so do it that way. goodluck for dependency hell.


Reply With Quote