Results 1 to 3 of 3
I downloaded some programs from the net that are in a installer.tar.gz format. How do I make these programs run?...
- 04-02-2005 #1Just Joined!
- Join Date
- Apr 2005
- Posts
- 1
software installation
I downloaded some programs from the net that are in a installer.tar.gz format. How do I make these programs run?
- 04-02-2005 #2Just Joined!
- Join Date
- Mar 2005
- Location
- Northern Ireland
- Posts
- 23
Check the website where you got the software from; look for install documentation etc... In a nutshell source files provided in tar.gz format need to be uncompressed, configured, compiled and installed.
So first off uncompress the software:
Then cd into the software directory just created. Then check the INSTALL and README files - these are usually provided by the software author to tell you how to install - make sure to read them!Code:$ gunzip -cd software.tar.gz | tar -xvf -
But basically after you uncompress the software you run this sequence:
The configure command will usually take extra arugments (as to where to install to, any extra features you want, etc) - so as I said make sure to read the INSTALL / README files...Code:$ ./configure $ make $ su # make install
e.g. a good example is ./configure --prefix=/my/install/path to install the software into /my/install/path
make will compile the softare up; make install (as root) will install the software.
Make sure to note the ouput from each command, e.g. if ./configure doesn't work then make ain't gonna work etc... You'll need to have a compiler installed (gcc is the usual suspect) and make utilities ; and if the software needs extra stuff you don't have ./configure will tell you.
- 04-02-2005 #3can be dome as
Originally Posted by dtodd
and for .bz2's:Code:tar xzvf filename.tar.gz
Code:tar xjvf filename.tar.bz2
"I am not an alcoholic, alcoholics go to meetings"
Registered Linux user = #372327


Reply With Quote
