|
|||||||
| Forums | Search Forums | Register | Forum Rules | Man Pages | Albums | FAQ | Members | Calendar | Search | Today's Posts | Mark Forums Read |
| UNIX for Dummies Questions & Answers If you're not sure where to post a UNIX or Linux question, post it here. All UNIX and Linux newbies welcome !! |
|
|
|
Thread Tools | Search this Thread | Display Modes |
|
#1
|
|||
|
|||
|
unzip .tgz files
hi all
How to unzip .tgz files waiting for suggestions Praful |
| Sponsored Links | ||
|
|
#2
|
|||
|
|||
|
tgz files are gzip compressed tar archives. You can extract them like this : tar xzf filename
|
| Sponsored Links | ||
|
|
#3
|
||||
|
||||
|
I think the previous reply may have left off something. The full command is like this:
gzip -cd <filename.tgz> | tar xvf - You could do each commmand separately, but if your resulting tar file is too large, tar xvf will not work. |
|
#4
|
||||
|
||||
|
A user may untar a compressed (gzipped) tar file with:
tar -zxvf <filename> The z flag instructs tar to use gzip. A seperate gzip pipe is not required. Of course, the v flag is not necessary, just makes gzip quite talkative ![]() DanielB is quite correct when he suggests that a .tgz file may be untarred with -zxf switches (only). |
| Sponsored Links | |
|
|
#5
|
||||
|
||||
|
My mistake, I was reading fast and read "xvf" instead of "xzf".
|
| Sponsored Links | |
|
|
#6
|
||||
|
||||
|
Well, you may still need to gunzip it first. Some tars' (non-GNU) do not understand the z option.
YMMV |
| Sponsored Links | ||
|
![]() |
| Thread Tools | Search this Thread |
| Display Modes | |
More UNIX and Linux Forum Topics You Might Find Helpful
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| unzip selected files | guddu_12 | Shell Programming and Scripting | 3 | 04-25-2012 07:37 AM |
| Unzip .tla files | chetan.c | Shell Programming and Scripting | 1 | 04-16-2012 09:40 PM |
| How to Unzip a file using unzip utility for files zipped without zip utility ? | Sabari Nath S | Shell Programming and Scripting | 1 | 12-11-2009 05:18 PM |
| unzip particular gzip files among the normal data files | thepurple | Shell Programming and Scripting | 4 | 11-30-2007 10:17 AM |
| Copy files from CD and Unzip | AJD | UNIX for Dummies Questions & Answers | 1 | 04-15-2004 07:43 AM |
|
|