LinuxQuestions.org

LinuxQuestions.org (/questions/)
-   Linux - Software (https://www.linuxquestions.org/questions/linux-software-2/)
-   -   uncompress Tar.z file (https://www.linuxquestions.org/questions/linux-software-2/uncompress-tar-z-file-27017/)

rkblk1 08-01-2002 11:25 PM

uncompress Tar.z file
 
I am trying to install a software package and the file is compressed i am running mandrake 8.0 package name is cvwserver the mesg i get when I run the command UNCOMPRESS -<CVW-MOO-SERVER-4.0*TAR.Z |TAR XVF (IS)
OLD OPTION 'F' REQUIRES AN ARGUMENT can any one help me.

linuxcool 08-02-2002 12:49 AM

I think it should look like this:

UNCOMPRESS -<CVW-MOO-SERVER-4.0*TAR.Z | TAR XVF -

Note the space and the hyphen ' - ' at the end of the command. I believe that this tells tar to read from the standard input instead of looking for a file name because you're using the ' F ' option.

naz 08-02-2002 03:16 AM

correct command line should be:

uncompress -<file.tar.z | tar xv -

remove the "f" option as you're using "-" instead, this means you are reading the input from stdin (as you are already doing for uncompress).

naz


All times are GMT -5. The time now is 10:49 AM.