bzip2.1
上传用户:yhdzpy8989
上传日期:2007-06-13
资源大小:13604k
文件大小:16k
源码类别:

生物技术

开发平台:

C/C++

  1. .PU
  2. .TH bzip2 1
  3. .SH NAME
  4. bzip2, bunzip2 - a block-sorting file compressor, v1.0.2
  5. .br
  6. bzcat - decompresses files to stdout
  7. .br
  8. bzip2recover - recovers data from damaged bzip2 files
  9. .SH SYNOPSIS
  10. .ll +8
  11. .B bzip2
  12. .RB [ " -cdfkqstvzVL123456789 " ]
  13. [
  14. .I "filenames &..."
  15. ]
  16. .ll -8
  17. .br
  18. .B bunzip2
  19. .RB [ " -fkvsVL " ]
  20. .I "filenames &..."
  21. ]
  22. .br
  23. .B bzcat
  24. .RB [ " -s " ]
  25. .I "filenames &..."
  26. ]
  27. .br
  28. .B bzip2recover
  29. .I "filename"
  30. .SH DESCRIPTION
  31. .I bzip2
  32. compresses files using the Burrows-Wheeler block sorting
  33. text compression algorithm, and Huffman coding.  Compression is
  34. generally considerably better than that achieved by more conventional
  35. LZ77/LZ78-based compressors, and approaches the performance of the PPM
  36. family of statistical compressors.
  37. The command-line options are deliberately very similar to 
  38. those of 
  39. .I GNU gzip, 
  40. but they are not identical.
  41. .I bzip2
  42. expects a list of file names to accompany the
  43. command-line flags.  Each file is replaced by a compressed version of
  44. itself, with the name "original_name.bz2".  
  45. Each compressed file
  46. has the same modification date, permissions, and, when possible,
  47. ownership as the corresponding original, so that these properties can
  48. be correctly restored at decompression time.  File name handling is
  49. naive in the sense that there is no mechanism for preserving original
  50. file names, permissions, ownerships or dates in filesystems which lack
  51. these concepts, or have serious file name length restrictions, such as
  52. MS-DOS.
  53. .I bzip2
  54. and
  55. .I bunzip2
  56. will by default not overwrite existing
  57. files.  If you want this to happen, specify the -f flag.
  58. If no file names are specified,
  59. .I bzip2
  60. compresses from standard
  61. input to standard output.  In this case,
  62. .I bzip2
  63. will decline to
  64. write compressed output to a terminal, as this would be entirely
  65. incomprehensible and therefore pointless.
  66. .I bunzip2
  67. (or
  68. .I bzip2 -d) 
  69. decompresses all
  70. specified files.  Files which were not created by 
  71. .I bzip2
  72. will be detected and ignored, and a warning issued.  
  73. .I bzip2
  74. attempts to guess the filename for the decompressed file 
  75. from that of the compressed file as follows:
  76.        filename.bz2    becomes   filename
  77.        filename.bz     becomes   filename
  78.        filename.tbz2   becomes   filename.tar
  79.        filename.tbz    becomes   filename.tar
  80.        anyothername    becomes   anyothername.out
  81. If the file does not end in one of the recognised endings, 
  82. .I .bz2, 
  83. .I .bz, 
  84. .I .tbz2
  85. or
  86. .I .tbz, 
  87. .I bzip2 
  88. complains that it cannot
  89. guess the name of the original file, and uses the original name
  90. with
  91. .I .out
  92. appended.
  93. As with compression, supplying no
  94. filenames causes decompression from 
  95. standard input to standard output.
  96. .I bunzip2 
  97. will correctly decompress a file which is the
  98. concatenation of two or more compressed files.  The result is the
  99. concatenation of the corresponding uncompressed files.  Integrity
  100. testing (-t) 
  101. of concatenated 
  102. compressed files is also supported.
  103. You can also compress or decompress files to the standard output by
  104. giving the -c flag.  Multiple files may be compressed and
  105. decompressed like this.  The resulting outputs are fed sequentially to
  106. stdout.  Compression of multiple files 
  107. in this manner generates a stream
  108. containing multiple compressed file representations.  Such a stream
  109. can be decompressed correctly only by
  110. .I bzip2 
  111. version 0.9.0 or
  112. later.  Earlier versions of
  113. .I bzip2
  114. will stop after decompressing
  115. the first file in the stream.
  116. .I bzcat
  117. (or
  118. .I bzip2 -dc) 
  119. decompresses all specified files to
  120. the standard output.
  121. .I bzip2
  122. will read arguments from the environment variables
  123. .I BZIP2
  124. and
  125. .I BZIP,
  126. in that order, and will process them
  127. before any arguments read from the command line.  This gives a 
  128. convenient way to supply default arguments.
  129. Compression is always performed, even if the compressed 
  130. file is slightly
  131. larger than the original.  Files of less than about one hundred bytes
  132. tend to get larger, since the compression mechanism has a constant
  133. overhead in the region of 50 bytes.  Random data (including the output
  134. of most file compressors) is coded at about 8.05 bits per byte, giving
  135. an expansion of around 0.5%.
  136. As a self-check for your protection, 
  137. .I 
  138. bzip2
  139. uses 32-bit CRCs to
  140. make sure that the decompressed version of a file is identical to the
  141. original.  This guards against corruption of the compressed data, and
  142. against undetected bugs in
  143. .I bzip2
  144. (hopefully very unlikely).  The
  145. chances of data corruption going undetected is microscopic, about one
  146. chance in four billion for each file processed.  Be aware, though, that
  147. the check occurs upon decompression, so it can only tell you that
  148. something is wrong.  It can't help you 
  149. recover the original uncompressed
  150. data.  You can use 
  151. .I bzip2recover
  152. to try to recover data from
  153. damaged files.
  154. Return values: 0 for a normal exit, 1 for environmental problems (file
  155. not found, invalid flags, I/O errors, &c), 2 to indicate a corrupt
  156. compressed file, 3 for an internal consistency error (eg, bug) which
  157. caused
  158. .I bzip2
  159. to panic.
  160. .SH OPTIONS
  161. .TP
  162. .B -c --stdout
  163. Compress or decompress to standard output.
  164. .TP
  165. .B -d --decompress
  166. Force decompression.  
  167. .I bzip2, 
  168. .I bunzip2 
  169. and
  170. .I bzcat 
  171. are
  172. really the same program, and the decision about what actions to take is
  173. done on the basis of which name is used.  This flag overrides that
  174. mechanism, and forces 
  175. .I bzip2
  176. to decompress.
  177. .TP
  178. .B -z --compress
  179. The complement to -d: forces compression, regardless of the
  180. invocation name.
  181. .TP
  182. .B -t --test
  183. Check integrity of the specified file(s), but don't decompress them.
  184. This really performs a trial decompression and throws away the result.
  185. .TP
  186. .B -f --force
  187. Force overwrite of output files.  Normally,
  188. .I bzip2 
  189. will not overwrite
  190. existing output files.  Also forces 
  191. .I bzip2 
  192. to break hard links
  193. to files, which it otherwise wouldn't do.
  194. bzip2 normally declines to decompress files which don't have the
  195. correct magic header bytes.  If forced (-f), however, it will pass
  196. such files through unmodified.  This is how GNU gzip behaves.
  197. .TP
  198. .B -k --keep
  199. Keep (don't delete) input files during compression
  200. or decompression.
  201. .TP
  202. .B -s --small
  203. Reduce memory usage, for compression, decompression and testing.  Files
  204. are decompressed and tested using a modified algorithm which only
  205. requires 2.5 bytes per block byte.  This means any file can be
  206. decompressed in 2300k of memory, albeit at about half the normal speed.
  207. During compression, -s selects a block size of 200k, which limits
  208. memory use to around the same figure, at the expense of your compression
  209. ratio.  In short, if your machine is low on memory (8 megabytes or
  210. less), use -s for everything.  See MEMORY MANAGEMENT below.
  211. .TP
  212. .B -q --quiet
  213. Suppress non-essential warning messages.  Messages pertaining to
  214. I/O errors and other critical events will not be suppressed.
  215. .TP
  216. .B -v --verbose
  217. Verbose mode -- show the compression ratio for each file processed.
  218. Further -v's increase the verbosity level, spewing out lots of
  219. information which is primarily of interest for diagnostic purposes.
  220. .TP
  221. .B -L --license -V --version
  222. Display the software version, license terms and conditions.
  223. .TP
  224. .B -1 (or --fast) to -9 (or --best)
  225. Set the block size to 100 k, 200 k ..  900 k when compressing.  Has no
  226. effect when decompressing.  See MEMORY MANAGEMENT below.
  227. The --fast and --best aliases are primarily for GNU gzip 
  228. compatibility.  In particular, --fast doesn't make things
  229. significantly faster.  
  230. And --best merely selects the default behaviour.
  231. .TP
  232. .B --
  233. Treats all subsequent arguments as file names, even if they start
  234. with a dash.  This is so you can handle files with names beginning
  235. with a dash, for example: bzip2 -- -myfilename.
  236. .TP
  237. .B --repetitive-fast --repetitive-best
  238. These flags are redundant in versions 0.9.5 and above.  They provided
  239. some coarse control over the behaviour of the sorting algorithm in
  240. earlier versions, which was sometimes useful.  0.9.5 and above have an
  241. improved algorithm which renders these flags irrelevant.
  242. .SH MEMORY MANAGEMENT
  243. .I bzip2 
  244. compresses large files in blocks.  The block size affects
  245. both the compression ratio achieved, and the amount of memory needed for
  246. compression and decompression.  The flags -1 through -9
  247. specify the block size to be 100,000 bytes through 900,000 bytes (the
  248. default) respectively.  At decompression time, the block size used for
  249. compression is read from the header of the compressed file, and
  250. .I bunzip2
  251. then allocates itself just enough memory to decompress
  252. the file.  Since block sizes are stored in compressed files, it follows
  253. that the flags -1 to -9 are irrelevant to and so ignored
  254. during decompression.
  255. Compression and decompression requirements, 
  256. in bytes, can be estimated as:
  257.        Compression:   400k + ( 8 x block size )
  258.        Decompression: 100k + ( 4 x block size ), or
  259.                       100k + ( 2.5 x block size )
  260. Larger block sizes give rapidly diminishing marginal returns.  Most of
  261. the compression comes from the first two or three hundred k of block
  262. size, a fact worth bearing in mind when using
  263. .I bzip2
  264. on small machines.
  265. It is also important to appreciate that the decompression memory
  266. requirement is set at compression time by the choice of block size.
  267. For files compressed with the default 900k block size,
  268. .I bunzip2
  269. will require about 3700 kbytes to decompress.  To support decompression
  270. of any file on a 4 megabyte machine, 
  271. .I bunzip2
  272. has an option to
  273. decompress using approximately half this amount of memory, about 2300
  274. kbytes.  Decompression speed is also halved, so you should use this
  275. option only where necessary.  The relevant flag is -s.
  276. In general, try and use the largest block size memory constraints allow,
  277. since that maximises the compression achieved.  Compression and
  278. decompression speed are virtually unaffected by block size.
  279. Another significant point applies to files which fit in a single block
  280. -- that means most files you'd encounter using a large block size.  The
  281. amount of real memory touched is proportional to the size of the file,
  282. since the file is smaller than a block.  For example, compressing a file
  283. 20,000 bytes long with the flag -9 will cause the compressor to
  284. allocate around 7600k of memory, but only touch 400k + 20000 * 8 = 560
  285. kbytes of it.  Similarly, the decompressor will allocate 3700k but only
  286. touch 100k + 20000 * 4 = 180 kbytes.
  287. Here is a table which summarises the maximum memory usage for different
  288. block sizes.  Also recorded is the total compressed size for 14 files of
  289. the Calgary Text Compression Corpus totalling 3,141,622 bytes.  This
  290. column gives some feel for how compression varies with block size.
  291. These figures tend to understate the advantage of larger block sizes for
  292. larger files, since the Corpus is dominated by smaller files.
  293.            Compress   Decompress   Decompress   Corpus
  294.     Flag     usage      usage       -s usage     Size
  295.      -1      1200k       500k         350k      914704
  296.      -2      2000k       900k         600k      877703
  297.      -3      2800k      1300k         850k      860338
  298.      -4      3600k      1700k        1100k      846899
  299.      -5      4400k      2100k        1350k      845160
  300.      -6      5200k      2500k        1600k      838626
  301.      -7      6100k      2900k        1850k      834096
  302.      -8      6800k      3300k        2100k      828642
  303.      -9      7600k      3700k        2350k      828642
  304. .SH RECOVERING DATA FROM DAMAGED FILES
  305. .I bzip2
  306. compresses files in blocks, usually 900kbytes long.  Each
  307. block is handled independently.  If a media or transmission error causes
  308. a multi-block .bz2
  309. file to become damaged, it may be possible to
  310. recover data from the undamaged blocks in the file.
  311. The compressed representation of each block is delimited by a 48-bit
  312. pattern, which makes it possible to find the block boundaries with
  313. reasonable certainty.  Each block also carries its own 32-bit CRC, so
  314. damaged blocks can be distinguished from undamaged ones.
  315. .I bzip2recover
  316. is a simple program whose purpose is to search for
  317. blocks in .bz2 files, and write each block out into its own .bz2 
  318. file.  You can then use
  319. .I bzip2 
  320. -t
  321. to test the
  322. integrity of the resulting files, and decompress those which are
  323. undamaged.
  324. .I bzip2recover
  325. takes a single argument, the name of the damaged file, 
  326. and writes a number of files "rec00001file.bz2",
  327. "rec00002file.bz2", etc, containing the  extracted  blocks.
  328. The  output  filenames  are  designed  so  that the use of
  329. wildcards in subsequent processing -- for example,  
  330. "bzip2 -dc  rec*file.bz2 > recovered_data" -- processes the files in
  331. the correct order.
  332. .I bzip2recover
  333. should be of most use dealing with large .bz2
  334. files,  as  these will contain many blocks.  It is clearly
  335. futile to use it on damaged single-block  files,  since  a
  336. damaged  block  cannot  be recovered.  If you wish to minimise 
  337. any potential data loss through media  or  transmission errors, 
  338. you might consider compressing with a smaller
  339. block size.
  340. .SH PERFORMANCE NOTES
  341. The sorting phase of compression gathers together similar strings in the
  342. file.  Because of this, files containing very long runs of repeated
  343. symbols, like "aabaabaabaab ..."  (repeated several hundred times) may
  344. compress more slowly than normal.  Versions 0.9.5 and above fare much
  345. better than previous versions in this respect.  The ratio between
  346. worst-case and average-case compression time is in the region of 10:1.
  347. For previous versions, this figure was more like 100:1.  You can use the
  348. -vvvv option to monitor progress in great detail, if you want.
  349. Decompression speed is unaffected by these phenomena.
  350. .I bzip2
  351. usually allocates several megabytes of memory to operate
  352. in, and then charges all over it in a fairly random fashion.  This means
  353. that performance, both for compressing and decompressing, is largely
  354. determined by the speed at which your machine can service cache misses.
  355. Because of this, small changes to the code to reduce the miss rate have
  356. been observed to give disproportionately large performance improvements.
  357. I imagine 
  358. .I bzip2
  359. will perform best on machines with very large caches.
  360. .SH CAVEATS
  361. I/O error messages are not as helpful as they could be.
  362. .I bzip2
  363. tries hard to detect I/O errors and exit cleanly, but the details of
  364. what the problem is sometimes seem rather misleading.
  365. This manual page pertains to version 1.0.2 of
  366. .I bzip2.  
  367. Compressed data created by this version is entirely forwards and
  368. backwards compatible with the previous public releases, versions
  369. 0.1pl2, 0.9.0, 0.9.5, 1.0.0 and 1.0.1, but with the following
  370. exception: 0.9.0 and above can correctly decompress multiple
  371. concatenated compressed files.  0.1pl2 cannot do this; it will stop
  372. after decompressing just the first file in the stream.
  373. .I bzip2recover
  374. versions prior to this one, 1.0.2, used 32-bit integers to represent
  375. bit positions in compressed files, so it could not handle compressed
  376. files more than 512 megabytes long.  Version 1.0.2 and above uses
  377. 64-bit ints on some platforms which support them (GNU supported
  378. targets, and Windows).  To establish whether or not bzip2recover was
  379. built with such a limitation, run it without arguments.  In any event
  380. you can build yourself an unlimited version if you can recompile it
  381. with MaybeUInt64 set to be an unsigned 64-bit integer.
  382. .SH AUTHOR
  383. Julian Seward, jseward@acm.org.
  384. http://sources.redhat.com/bzip2
  385. The ideas embodied in
  386. .I bzip2
  387. are due to (at least) the following
  388. people: Michael Burrows and David Wheeler (for the block sorting
  389. transformation), David Wheeler (again, for the Huffman coder), Peter
  390. Fenwick (for the structured coding model in the original
  391. .I bzip,
  392. and many refinements), and Alistair Moffat, Radford Neal and Ian Witten
  393. (for the arithmetic coder in the original
  394. .I bzip).  
  395. I am much
  396. indebted for their help, support and advice.  See the manual in the
  397. source distribution for pointers to sources of documentation.  Christian
  398. von Roques encouraged me to look for faster sorting algorithms, so as to
  399. speed up compression.  Bela Lubkin encouraged me to improve the
  400. worst-case compression performance.  
  401. The bz* scripts are derived from those of GNU gzip.
  402. Many people sent patches, helped
  403. with portability problems, lent machines, gave advice and were generally
  404. helpful.