- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Re: Unzipping the 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
12-20-2004 08:20 PM
12-20-2004 08:20 PM
This could be an silly question but in a hurry.
I would like to know the way to unzip the file with .tgz extension.
Gunzip doesn't work ... what do i use for it??
Thanks and regards,
Girish
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-20-2004 08:22 PM
12-20-2004 08:22 PM
Re: Unzipping the file
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-20-2004 08:28 PM
12-20-2004 08:28 PM
Re: Unzipping the file
Use gzip (See man for more details):
#gzip -d
Best Regards,
Eric Antunes
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-20-2004 08:30 PM
12-20-2004 08:30 PM
Re: Unzipping the file
Like above or with gzcat
All the best
Victor
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-20-2004 08:59 PM
12-20-2004 08:59 PM
Re: Unzipping the file
# ll
total 64432
-rw-r----- 1 root sys 32987886 Dec 21 14:47 hpux_800_11.23_122102
48.tgz
# gzip -dc hpux_800_11.23_12210248.tgz | tar xvf -
x patch_manifest, 112 bytes, 1 tape blocks
x README_hp-ux, 1780 bytes, 4 tape blocks
x create_depot_hp-ux_11, 5768 bytes, 12 tape blocks
x BUNDLE11i_B.11.23.0409.3.depot, 532490240 bytes, 1040020 tape blocks
gzip: hpux_800_11.23_12210248.tgz: unexpected end of file
Tar: error! blocksize changed
#
What do you suspect...!
Thanks and regards,
Girish
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-20-2004 09:09 PM
12-20-2004 09:09 PM
SolutionGNU tar 1.15 was released yesterday, and it has automatic compression detection! Yeahh!!! No more need for -z -Z or -j
The error/warning can probably be ignored, you can check this with
# tar tf BUNDLE11i_B.11.23.0409.3.depot
If that does not yield any error, the extract was fine. Otherwise, you have to re-fetch hpux_800_11.23_12210248.tgz because it is probably an unfinished download
Enjoy, Have FUN! H.Merijn
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-20-2004 09:16 PM
12-20-2004 09:16 PM
Re: Unzipping the file
The .tgz file you tried to down load was not completed it seems. Use a download manager viz.Download Accelerator Plus for download which gives a better continuity in download. You can also resume downloads using such utilities incase u loose the connectivity during ur download.
Try downloading the file again.
Regards,
Syam
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-20-2004 09:22 PM
12-20-2004 09:22 PM
Re: Unzipping the file
wow really good news the auto compression detection. :-)
I always used to forget the -j switch for bzip2 packed archives with GNU tar.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-20-2004 10:39 PM
12-20-2004 10:39 PM
Re: Unzipping the file
Enjoy, Have FUN! H.Merijn
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-21-2004 12:46 AM
12-21-2004 12:46 AM
Re: Unzipping the file
That was simply great and helpful.