- Community Home
- >
- Servers and Operating Systems
- >
- Legacy
- >
- Operating System - Tru64 Unix
- >
- how to uncompress the *.cgz 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
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
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-06-2005 05:55 PM
тАО11-06-2005 05:55 PM
how to uncompress the *.cgz file ?
I got a file "abc.cgz". but now I how to uncompress it ? can I uncompress it under hp-ux OS ?
Thanks for your help.
BR
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО11-06-2005 07:14 PM
тАО11-06-2005 07:14 PM
Re: how to uncompress the *.cgz file ?
I think you are referring to collect datafile. If so, you still cannot read data directly from the uncompressed file. You have to use collect/cfilt to do so.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО11-06-2005 07:16 PM
тАО11-06-2005 07:16 PM
Re: how to uncompress the *.cgz file ?
You can only read this file with the collect tool.
collect has it's built in compress/decompress libraries to read the .cgz files
If you really, really, really want to decompress it, you can use following command.
# collect -p input_file.cgz -f output_file -oz
Joris
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО11-06-2005 07:31 PM
тАО11-06-2005 07:31 PM
Re: how to uncompress the *.cgz file ?
man gzip
do
gzip -d abc.cgz
Awadhesh
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО11-06-2005 07:49 PM
тАО11-06-2005 07:49 PM
Re: how to uncompress the *.cgz file ?
Indeed, you can gunzip the file if you rename the suffix to .gz
However, I compared a gzip_uncompressed file with the file produced by the command, that I proposed earlier
There is a difference, as you see on the following lines
-rw-r--r-- 1 root system 27345672 Nov 7 09:14 uncompressed_with_collect
-rw-r--r-- 1 root system 26838760 Nov 7 09:35 uncompresed_with_gzip
Which one is correct ??
Or are they both OK ??