Results 1 to 5 of 5
I'm tring to open a file called unz551x-glibc.tar.gz. So I open up my shell and type:
tar -xz unz551x-glibc.tar.gz
and I press enter and it does a carriage return and ...
Enjoy an ad free experience by logging in. Not a member yet? Register.
- 09-24-2004 #1Just Joined!
- Join Date
- Sep 2004
- Posts
- 2
tar hangs when trying to open a file in shell window
I'm tring to open a file called unz551x-glibc.tar.gz. So I open up my shell and type:
tar -xz unz551x-glibc.tar.gz
and I press enter and it does a carriage return and then hangs. No HD activity or anything. I just press ctrl+c to exit. How can I get tar to open this file?
- 09-24-2004 #2
i always use:
i don't know, but for some reason, the extra v and f always work for me. try thatCode:tar -xvfz tarfile.tar.gz
-lakerdonald
- 09-24-2004 #3Just Joined!
- Join Date
- Sep 2004
- Posts
- 2
Ok so what I did now was us gzip -d to decompress the file and now I'm left with myTarFile.tar
Then I typed in
tar -x myTarFile.tar
and press enter, adn it still hangs.
- 09-25-2004 #4Just Joined!
- Join Date
- Aug 2004
- Posts
- 21
I too always use the -xvzf flag. Does it still hang when you try that? (In your case, do -xvf since you already gunzipped it).
- 09-26-2004 #5Just Joined!
- Join Date
- May 2004
- Location
- Pennsylvania
- Posts
- 98
As far as i know, you MUST use the -f flag.
As others said, most people use -xvf
the v just lists all the files as it is extracting them


Reply With Quote
