Installing Software onto Linux
By TrevaUK
@TrevaUK (142)
April 23, 2007 10:23am CST
I recently installed Ubuntu onto a spare computer, Using it seams easy enough. But what I can't figure out is how to install downloaded software onto Linux. When I extract the downloaded .tar file i get a bunch of files and folders, but I haven't a clue what to do with these files. There is no executable file.
3 responses
@yours_harjeet (13)
•
23 Apr 07
installing software in linux is not easy as there are a lot of formats
except rpm, you need to compile the source like said above
but installation folder may also contain an installer in the form of a .sh shell script or may be you get a self extracting fil .bin like you get for java runtime.
so it depends on the software's format and in linux mostly the installation folder contains a INSTALL or README file which can benefit you a lot
compiling source needs you to meet its dependencies also which may or may not be mentioned in these files
@gastly (296)
• India
23 Apr 07
If you have downloaded some software in a .tar file. Then you should just extract that archive into a temporary folder and then read the Readme file or an Install file that is in that archive.
But anyhow I will explain the basics of installing software in a .tar archive.
1. Open a terminal window
-- Applications - Accessories - Terminal
or
-- Press Alt + F2 and type 'gnome-terminal' (without quotes) and
press enter.
2. cd to the directory where you extracted the files
-- Type: ' cd /home/{your username}/{foldername} ' (without ' ')
3. Type: './configure'
4. Type: 'make'
5. Type: 'sudo make install'
-- This will ask you for your password and after that the program
will be installed
I hope this was helpful!