- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- How To unzip/uncompress 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
Discussions
Discussions
Discussions
Forums
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
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
тАО05-04-2004 09:21 PM
тАО05-04-2004 09:21 PM
How To unzip/uncompress file?
Thanks.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО05-04-2004 09:23 PM
тАО05-04-2004 09:23 PM
Re: How To unzip/uncompress file?
to decompress use gzip -d or gunzip
Regards,
Bernhard
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО05-04-2004 09:23 PM
тАО05-04-2004 09:23 PM
Re: How To unzip/uncompress file?
Mark Syder (like the drink but spelt different)
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО05-04-2004 09:28 PM
тАО05-04-2004 09:28 PM
Re: How To unzip/uncompress file?
Regds,
Kaps
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО05-04-2004 09:36 PM
тАО05-04-2004 09:36 PM
Re: How To unzip/uncompress file?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО05-04-2004 10:01 PM
тАО05-04-2004 10:01 PM
Re: How To unzip/uncompress file?
In both 11i and 11.0
#/usr/contrib/bin/gunzip
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО05-04-2004 11:32 PM
тАО05-04-2004 11:32 PM
Re: How To unzip/uncompress file?
In case of any doubt, first pls check file.gz integrity:
# gzip -tv file.gz
After this, you can also check the previous command return code:
# echo $?
Any return code not equal to zero value will indicate you that this .gz file not is a gzipped file or have an integrity trouble.
If this file is a not gzipped file, make your life easy, change .gz extension an go ahead with the simple command:
# gzip file
If you need full detailed info about gzip command: gzip -help
Rgds.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО05-06-2004 12:03 AM
тАО05-06-2004 12:03 AM
Re: How To unzip/uncompress file?
The .Z file can be uncompressed by either uncompress or gunzip while the .gz file can only be uncompressed with gunzip.
So I tend to always use gunzip whether its a .Z extension or a .gz extension.
Best regards,
Kent M. Ostby