![]() |
|
|
|
|
|||||||
| Forums | Portal | Register | Rules & FAQ | Contribute | Members List | Arcade | Search | Today's Posts | Mark Forums Read |
| UNIX for Dummies Questions & Answers If you're not sure where to post a UNIX or Linux question, post it here. All UNIX and Linux newbies welcome !! |
|
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| using a ssh tunnel with nx compression | bolboln01 | High Level Programming | 0 | 02-22-2008 02:44 AM |
| Predictor compression | sriram.ec | UNIX for Advanced & Expert Users | 0 | 08-31-2006 04:31 AM |
| .bz2 compression | Phobos | UNIX for Dummies Questions & Answers | 4 | 01-19-2005 01:21 AM |
| tar compression - please help | Taylor | UNIX for Dummies Questions & Answers | 4 | 08-08-2001 02:49 PM |
| file compression | kristy | UNIX for Dummies Questions & Answers | 2 | 05-16-2001 07:57 AM |
|
|
LinkBack | Thread Tools | Display Modes |
|
|||
|
compression utilities
I've noticed bzip2 gives a little bit better compression than gzip. So...I'm curious...what's gives the best compression out of all the compression utilities?
Thanks! |
| Forum Sponsor | ||
|
|
|
|||
|
A couple of points -
gzip -9 tells the program to compress as much as possible zip, gzip, etc all use the same algorithms, so there won't be huge differences. Also, one idea is to try to 'uncompress' a file made by another compressor - at least make it feasible. |
|
||||
|
pack -- Huffman coding
compact -- adaptive Huffman coding compress -- adaptive Lempel-Ziv aka Lempel-Ziv-Welsh aka modified Lempel-Ziv aka LZW gzip -- Lempel-Ziv bzip2 -- Burrows-Wheeler This page compares gzip with bzip2. bzip2 will almost always result in a smaller file at a tremendous cost of cpu time. bzip2 might make sense if you're downloading a very large file across a 56k dailup or something...other than that, I'd stick with gzip. |