- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - Linux
- >
- *.tar.gz file
Categories
Company
Local Language
Forums
Discussions
Forums
- Data Protection and Retention
- Entry Storage Systems
- Legacy
- Midrange and Enterprise Storage
- Storage Networking
- HPE Nimble Storage
Discussions
Forums
Discussions
Discussions
Discussions
Forums
Discussions
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
- BladeSystem Infrastructure and Application Solutions
- Appliance Servers
- Alpha Servers
- BackOffice Products
- Internet Products
- HPE 9000 and HPE e3000 Servers
- Networking
- Netservers
- Secure OS Software for Linux
- Server Management (Insight Manager 7)
- Windows Server 2003
- Operating System - Tru64 Unix
- ProLiant Deployment and Provisioning
- Linux-Based Community / Regional
- Microsoft System Center Integration
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Community
Resources
Forums
Blogs
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-16-2002 07:24 AM
11-16-2002 07:24 AM
*.tar.gz file
I want to unpack it on linux
How do I do it
Please help
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-16-2002 11:08 AM
11-16-2002 11:08 AM
Re: *.tar.gz file
gunzip file.tar.gz
tar xvf file.tar
or :
tar xzvf file.tar.gz
or :
zcat file.tar.gz | tar xvf -
Good luck.
Kodjo
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-18-2002 08:06 AM
11-18-2002 08:06 AM
Re: *.tar.gz file
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-02-2002 04:53 AM
12-02-2002 04:53 AM
Re: *.tar.gz file
gunzip file.tar.gz
tar -xvf file.tar
just some quick notes on gunzip and tar:
to zip a file type gzip file
to unzip a file type gunzup file.gz
to create a tar file type:
tar -cvf tarfilename file1 file2 file3 and so on
to look at the contents of a tar file type:
tar -tvf tarfilename
to extract a tarfile type:
tar -xvf tarfilename
hope this helps
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-02-2002 01:57 PM
12-02-2002 01:57 PM
Re: *.tar.gz file
Given that we're using Linux (in this group at least), this means that for the most of us, we'd be using GNU 'tar'.
GNU tar has some lovely little compression plugins already, so you can do fun things like:
tar ztvf file.tar.gz
to list back files in a G-Zipped Tar file. You can also create directly into such a tarball by using:
tar zcf file.tar.gz
Now, if you didn't want to use GZip compression, but something like 'bzip', you could use the 'j' flag (unless it was older than tar 1.20 or some such, where it was 'I'. This was changed for compatability reasons).
Not only that, if you wanted to use your own compression routine, you could just tell it to use your own:
tar cvf --use-compress-program /my/comperss/program file.tar.mycompress
All is neatly laid out in the manual page of course.
NOTE: All the previous examples in the other threads are also quite valid, and will work. Just not as efficient as it could be.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-02-2002 09:31 PM
12-02-2002 09:31 PM