LinuxQuestions.org

LinuxQuestions.org (/questions/)
-   Linux - Newbie (https://www.linuxquestions.org/questions/linux-newbie-8/)
-   -   installing a tar.gz (https://www.linuxquestions.org/questions/linux-newbie-8/installing-a-tar-gz-81134/)

SonKun 08-11-2003 09:11 PM

installing a tar.gz
 
Ok I unzipped the file and then I used the command ./install but it tells me that "install: cannot stat 'bin/starter': No such file or directory Installation failed. Could not install launcher. What should I do?

contrasutra 08-11-2003 09:16 PM

1. You didn't "unzip" it, because its not a ZIP file.

2. What program is it?

3. For general directions, search the forums, its asked 5 times a day.

SonKun 08-11-2003 09:21 PM

Ok sorry I should have searched first. But doesnt the command gzip -d unzip it (or whatever you call it) and its the game armagetron. (http://armagetron.sourceforge.net/)

headshot 08-11-2003 09:39 PM

for most tar.gz files you should go to the directory you put the tarball in and type

tar -xzvf <filename>

After that, change to the directory by doing : cd <filename> and ls the contents and there should be a README or INSTALL that tell you exactly how to install the package.

headshot 08-11-2003 09:45 PM

the basic way to install a tar.gz after doing the tar -xzvf <filename> and then changing to that filename's directory is this way:

./configure
make
make install

For the last step you will most likely need to be logged in with root priveleges. Of course not every tar.gz works this way, but a lot of them do.

Hope this helps in the future.

SonKun 08-11-2003 09:50 PM

ok I tried to use tar -xzvf and it tells me
gzip: stdin: unexpected end of file
tar: Child returned status 2
tar: Error exit delayed from previouse errors

SonKun 08-11-2003 10:33 PM

ok im confused about the
./configure
make
make install

ok so the filename is armagetron-0.2.4 (thats the folder after I tar -xzvf command) and its in /root/ so could you tell me me exactly what I would type after tar -xzvf ??

contrasutra 08-11-2003 11:53 PM

Search the forum.

There is a stickied thread that takes you step by step.

JZL240I-U 08-12-2003 07:58 AM

Sometimes these problems come with being root. Login as user und do only the last step (make install) as root (su make install). Sometimes that's all there is to these hangups. Good luck :).


All times are GMT -5. The time now is 08:29 AM.