- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- compress vs. gzip
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
тАО08-22-2001 12:54 PM
тАО08-22-2001 12:54 PM
Richard
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО08-22-2001 03:13 PM
тАО08-22-2001 03:13 PM
SolutionThis is an introduction para of gzip from http://www.gzip.org
/Begin/
gzip (GNU zip) is a compression utility designed to be a replacement for compress. Its main advantages over compress are much better compression and freedom from patented algorithms. It has been adopted by the GNU project and is now relatively popular on the Internet. gzip was written by Jean-loup Gailly (jloup@gzip.org), and Mark Adler for the decompression code.
gzip produces files with a .gz extension. gunzip can decompress files created by gzip, compress or pack. The detection of the input format is automatic.
/End/
AFAIK, gzip does a better compression than compress.
The other compress utilities are pkzip/pkunzip which is compatible with DOS's zip/unzip. You have bzip2 as well
-HTH
Ramesh
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО08-22-2001 10:35 PM
тАО08-22-2001 10:35 PM
Re: compress vs. gzip
gzip , though slower than compress is far more efficient .
But gzip is not always available on all machines.
...BPK...
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО08-22-2001 10:50 PM
тАО08-22-2001 10:50 PM
Re: compress vs. gzip
overall I get the best results with gzip, or "gzip -9" (for highest compression).
In addition Winzip on PC seems to be very compatible with gzip, very nice for copying large files to PC ;)
regards,
Thierry.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО08-23-2001 08:16 AM
тАО08-23-2001 08:16 AM
Re: compress vs. gzip
It's not very fast though...
Checkout their official Page:
http://sources.redhat.com/bzip2/
Cheers,
Enno.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО08-23-2001 08:25 AM
тАО08-23-2001 08:25 AM
Re: compress vs. gzip
Overall gzip gives better compression ratios for text/doc files.
I found auditing files /var/adm/sa?? gets better compressed than gzipped. But the sar report outputs /var/adm/sar?? gives smaller files with gzip than compress.
Thanks.
Prashant.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО08-23-2001 09:24 AM
тАО08-23-2001 09:24 AM
Re: compress vs. gzip
Here is a link that gives a detailed explanation, in the Introduction section, of the advantages of gzip over compress...
http://www.gzip.org/
Richard Darling
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО08-23-2001 11:07 AM
тАО08-23-2001 11:07 AM
Re: compress vs. gzip
Much better compression. I just did a comparison. On one of my databases:
compress size=10GB
gzip size=7GB
Savings of 3GB of disk space.
...jcd...