cmd:bzip2 

Usage 

cd ~/www/gens
tar -cvf - rget | bzip2 > /tmp/rget.tbz
bzip2 -t /tmp/rget.tbz
bzip2 -d -c /tmp/rget.tbz | tar -tvf -
bzip2 -d -c /tmp/rget.tbz | tar -xvf -
bakd rget -d /tmp
$ dir /tmp/rget.*
-rw-rw----    1 tong     tong          506 Apr 18 17:53 /tmp/rget.tbz
-rw-rw----    1 tong     tong          473 Apr 18 17:55 /tmp/rget.tgz

Info 

bzip2 is a freely available, patent free (see below), high-quality data compressor. It typically compresses files to within 10% to 15% of the best available techniques (the PPM family of statistical compressors), whilst being around twice as fast at compression and six times faster at decompression.

Source 

http://sources.redhat.com/bzip2/index.html

DESCRIPTION 

bzip2 compresses files using the Burrows-Wheeler block sorting text compression algorithm, and Huffman coding. Compression is generally considerably better than that achieved by more conventional LZ77/LZ78-based compressors, and approaches the performance of the PPM family of statistical compressors.

The command-line options are deliberately very similar to those of GNU gzip, but they are not identical.

MEMORY MANAGEMENT 

bzip2 compresses large files in blocks. The block size affects both the compression ratio achieved, and the amount of memory needed for compression and decompression. The flags -1 through -9 specify the block size to be 100,000 bytes through 900,000 bytes (the default) respectively.

In general, try and use the largest block size memory constraints allow, since that maximises the compression achieved. Compression and decompression speed are virtually unaffected by block size.

RECOVERING DATA FROM DAMAGED FILES 

bzip2 compresses files in blocks, usually 900kbytes long. Each block is handled independently. If a media or transmission error causes a multi-block .bz2 file to become damaged, it may be possible to (partially) recover (good) data from the undamaged blocks in the file.

The compressed representation of each block is delimited by a 48-bit pattern, which makes it possible to find the block boundaries with reasonable certainty. Each block also carries its own 32-bit CRC, so damaged blocks can be distinguished from undamaged ones.

bzip2recover is a simple program whose purpose is to search for blocks in .bz2 files, and write each block out into its own .bz2 file. You can then use bzip2 -t to test the integrity of the resulting files, and decompress those which are undamaged.

bzip2recover should be of most use dealing with large .bz2 files, as these will contain many blocks. It is clearly futile to use it on damaged single-block files, since a damaged block cannot be recovered. If you wish to minimise any potential data loss through media or transmission errors, you might consider compressing with a smaller block size.