LinuxQuestions.org

LinuxQuestions.org (/questions/)
-   Linux - Newbie (https://www.linuxquestions.org/questions/linux-newbie-8/)
-   -   how to install new software with *.tar.gz (https://www.linuxquestions.org/questions/linux-newbie-8/how-to-install-new-software-with-%2A-tar-gz-109255/)

Txlyo 10-27-2003 06:04 PM

how to install new software with *.tar.gz
 
as title....after uncompress it i dont know what to do next....

Peacedog 10-27-2003 06:11 PM

look for a readme file, it usually contains instructions for installation.

nirvanix 10-27-2003 06:16 PM

Hi, *.tar.gz are just standard compression formats, but what you need to know, either by looking at what you uncompressed or by getting information from the place where you got the file, is what are the uncompressed contents? Are they binary file(s) or are they source code file(s). If they are binaries you can likely run them right away, or you could put them in a standard binary directory like /usr/local/bin and run them from there.
If they are source files, things that end with .cpp and .h, you will have to do a compile. Usually there are instructions available in the uncompressed files. A fairly standard procedure for compiling and placing the resulting binaries in the correct directories would be issuing the following commands (from the directory containing the uncompressed files):

1) ./configure
2) make
3) make install

You'll see a fair bit of that if you stick with Linux!


All times are GMT -5. The time now is 07:59 PM.