rzip(1) | rzip(1) |
rzip - a large-file compression program
rzip [OPTIONS] <files...>
rzip is a file compression program designed to do particularly well on very large files containing long distance redundancy.
Here is a summary of the options to rzip.
-0 fastest (worst) compression
-6 default compression
-9 slowest (best) compression
-d decompress
-o filename specify the output file name
-S suffix specify compressed suffix (default '.rz')
-f force overwrite of any existing files
-k keep existing files
-P show compression progress
-V show version
Just install rzip in your search path.
rzip operates in two stages. The first stage finds and encodes large chunks of duplicated data over potentially very long distances (up to nearly a gigabyte) in the input file. The second stage is to use a standard compression algorithm (bzip2) to compress the output of the first stage.
The key difference between rzip and other well known compression algorithms is its ability to take advantage of very long distance redundancy. The well known deflate algorithm used in gzip uses a maximum history buffer of 32k. The block sorting algorithm used in bzip2 is limited to 900k of history. The history buffer in rzip can be up to 900MB long, several orders of magnitude larger than gzip or bzip2.
It is quite common these days to need to compress files that contain long distance redundancies. For example, when compressing a set of home directories several users might have copies of the same file, or of quite similar files. It is also common to have a single file that contains large duplicated chunks over long distances, such as pdf files containing repeated copies of the same image. Most compression programs won't be able to take advantage of this redundancy, and thus might achieve a much lower compression ratio than rzip can achieve.
The ideas behind rzip were first implemented in 1998 while I was working on rsync. That version was too slow to be practical, and was replaced by this version in 2003.
Unlike most Unix compression programs, rzip cannot compress or decompress to or from standard input or standard output. This is due to the nature of the algorithm that rzip uses and cannot easily be fixed.
Thanks to the following people for their contributions to rzip
rzip was written by Andrew Tridgell http://samba.org/~tridge/
If you wish to report a problem or make a suggestion then please email bugs-rzip@tridgell.net
rzip is released under the GNU General Public License version 2 or later. Please see the file COPYING for license details.
October 2003 |