]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - sys/contrib/zstd/programs/zstd.1
MFV r336851:
[FreeBSD/FreeBSD.git] / sys / contrib / zstd / programs / zstd.1
1 .
2 .TH "ZSTD" "1" "2018-01-27" "zstd 1.3.4" "User Commands"
3 .
4 .SH "NAME"
5 \fBzstd\fR \- zstd, zstdmt, unzstd, zstdcat \- Compress or decompress \.zst files
6 .
7 .SH "SYNOPSIS"
8 \fBzstd\fR [\fIOPTIONS\fR] [\-|\fIINPUT\-FILE\fR] [\-o \fIOUTPUT\-FILE\fR]
9 .
10 .P
11 \fBzstdmt\fR is equivalent to \fBzstd \-T0\fR
12 .
13 .P
14 \fBunzstd\fR is equivalent to \fBzstd \-d\fR
15 .
16 .P
17 \fBzstdcat\fR is equivalent to \fBzstd \-dcf\fR
18 .
19 .SH "DESCRIPTION"
20 \fBzstd\fR is a fast lossless compression algorithm and data compression tool, with command line syntax similar to \fBgzip (1)\fR and \fBxz (1)\fR\. It is based on the \fBLZ77\fR family, with further FSE & huff0 entropy stages\. \fBzstd\fR offers highly configurable compression speed, with fast modes at > 200 MB/s per code, and strong modes nearing lzma compression ratios\. It also features a very fast decoder, with speeds > 500 MB/s per core\.
21 .
22 .P
23 \fBzstd\fR command line syntax is generally similar to gzip, but features the following differences :
24 .
25 .IP "\(bu" 4
26 Source files are preserved by default\. It\'s possible to remove them automatically by using the \fB\-\-rm\fR command\.
27 .
28 .IP "\(bu" 4
29 When compressing a single file, \fBzstd\fR displays progress notifications and result summary by default\. Use \fB\-q\fR to turn them off\.
30 .
31 .IP "\(bu" 4
32 \fBzstd\fR does not accept input from console, but it properly accepts \fBstdin\fR when it\'s not the console\.
33 .
34 .IP "\(bu" 4
35 \fBzstd\fR displays a short help page when command line is an error\. Use \fB\-q\fR to turn it off\.
36 .
37 .IP "" 0
38 .
39 .P
40 \fBzstd\fR compresses or decompresses each \fIfile\fR according to the selected operation mode\. If no \fIfiles\fR are given or \fIfile\fR is \fB\-\fR, \fBzstd\fR reads from standard input and writes the processed data to standard output\. \fBzstd\fR will refuse to write compressed data to standard output if it is a terminal : it will display an error message and skip the \fIfile\fR\. Similarly, \fBzstd\fR will refuse to read compressed data from standard input if it is a terminal\.
41 .
42 .P
43 Unless \fB\-\-stdout\fR or \fB\-o\fR is specified, \fIfiles\fR are written to a new file whose name is derived from the source \fIfile\fR name:
44 .
45 .IP "\(bu" 4
46 When compressing, the suffix \fB\.zst\fR is appended to the source filename to get the target filename\.
47 .
48 .IP "\(bu" 4
49 When decompressing, the \fB\.zst\fR suffix is removed from the source filename to get the target filename
50 .
51 .IP "" 0
52 .
53 .SS "Concatenation with \.zst files"
54 It is possible to concatenate \fB\.zst\fR files as is\. \fBzstd\fR will decompress such files as if they were a single \fB\.zst\fR file\.
55 .
56 .SH "OPTIONS"
57 .
58 .SS "Integer suffixes and special values"
59 In most places where an integer argument is expected, an optional suffix is supported to easily indicate large integers\. There must be no space between the integer and the suffix\.
60 .
61 .TP
62 \fBKiB\fR
63 Multiply the integer by 1,024 (2^10)\. \fBKi\fR, \fBK\fR, and \fBKB\fR are accepted as synonyms for \fBKiB\fR\.
64 .
65 .TP
66 \fBMiB\fR
67 Multiply the integer by 1,048,576 (2^20)\. \fBMi\fR, \fBM\fR, and \fBMB\fR are accepted as synonyms for \fBMiB\fR\.
68 .
69 .SS "Operation mode"
70 If multiple operation mode options are given, the last one takes effect\.
71 .
72 .TP
73 \fB\-z\fR, \fB\-\-compress\fR
74 Compress\. This is the default operation mode when no operation mode option is specified and no other operation mode is implied from the command name (for example, \fBunzstd\fR implies \fB\-\-decompress\fR)\.
75 .
76 .TP
77 \fB\-d\fR, \fB\-\-decompress\fR, \fB\-\-uncompress\fR
78 Decompress\.
79 .
80 .TP
81 \fB\-t\fR, \fB\-\-test\fR
82 Test the integrity of compressed \fIfiles\fR\. This option is equivalent to \fB\-\-decompress \-\-stdout\fR except that the decompressed data is discarded instead of being written to standard output\. No files are created or removed\.
83 .
84 .TP
85 \fB\-b#\fR
86 Benchmark file(s) using compression level #
87 .
88 .TP
89 \fB\-\-train FILEs\fR
90 Use FILEs as a training set to create a dictionary\. The training set should contain a lot of small files (> 100)\.
91 .
92 .TP
93 \fB\-l\fR, \fB\-\-list\fR
94 Display information related to a zstd compressed file, such as size, ratio, and checksum\. Some of these fields may not be available\. This command can be augmented with the \fB\-v\fR modifier\.
95 .
96 .SS "Operation modifiers"
97 .
98 .TP
99 \fB\-#\fR
100 \fB#\fR compression level [1\-19] (default: 3)
101 .
102 .TP
103 \fB\-\-ultra\fR
104 unlocks high compression levels 20+ (maximum 22), using a lot more memory\. Note that decompression will also require more memory when using these levels\.
105 .
106 .TP
107 \fB\-\-long[=#]\fR
108 enables long distance matching with \fB#\fR \fBwindowLog\fR, if not \fB#\fR is not present it defaults to \fB27\fR\. This increases the window size (\fBwindowLog\fR) and memory usage for both the compressor and decompressor\. This setting is designed to improve the compression ratio for files with long matches at a large distance\.
109 .
110 .IP
111 Note: If \fBwindowLog\fR is set to larger than 27, \fB\-\-long=windowLog\fR or \fB\-\-memory=windowSize\fR needs to be passed to the decompressor\.
112 .
113 .TP
114 \fB\-T#\fR, \fB\-\-threads=#\fR
115 Compress using \fB#\fR threads (default: 1)\. If \fB#\fR is 0, attempt to detect and use the number of physical CPU cores\. In all cases, the nb of threads is capped to ZSTDMT_NBTHREADS_MAX==256\. This modifier does nothing if \fBzstd\fR is compiled without multithread support\.
116 .
117 .TP
118 \fB\-D file\fR
119 use \fBfile\fR as Dictionary to compress or decompress FILE(s)
120 .
121 .TP
122 \fB\-\-nodictID\fR
123 do not store dictionary ID within frame header (dictionary compression)\. The decoder will have to rely on implicit knowledge about which dictionary to use, it won\'t be able to check if it\'s correct\.
124 .
125 .TP
126 \fB\-o file\fR
127 save result into \fBfile\fR (only possible with a single \fIINPUT\-FILE\fR)
128 .
129 .TP
130 \fB\-f\fR, \fB\-\-force\fR
131 overwrite output without prompting, and (de)compress symbolic links
132 .
133 .TP
134 \fB\-c\fR, \fB\-\-stdout\fR
135 force write to standard output, even if it is the console
136 .
137 .TP
138 \fB\-\-[no\-]sparse\fR
139 enable / disable sparse FS support, to make files with many zeroes smaller on disk\. Creating sparse files may save disk space and speed up decompression by reducing the amount of disk I/O\. default: enabled when output is into a file, and disabled when output is stdout\. This setting overrides default and can force sparse mode over stdout\.
140 .
141 .TP
142 \fB\-\-rm\fR
143 remove source file(s) after successful compression or decompression
144 .
145 .TP
146 \fB\-k\fR, \fB\-\-keep\fR
147 keep source file(s) after successful compression or decompression\. This is the default behavior\.
148 .
149 .TP
150 \fB\-r\fR
151 operate recursively on dictionaries
152 .
153 .TP
154 \fB\-\-format=FORMAT\fR
155 compress and decompress in other formats\. If compiled with support, zstd can compress to or decompress from other compression algorithm formats\. Possibly available options are \fBgzip\fR, \fBxz\fR, \fBlzma\fR, and \fBlz4\fR\.
156 .
157 .TP
158 \fB\-h\fR/\fB\-H\fR, \fB\-\-help\fR
159 display help/long help and exit
160 .
161 .TP
162 \fB\-V\fR, \fB\-\-version\fR
163 display version number and exit\. Advanced : \fB\-vV\fR also displays supported formats\. \fB\-vvV\fR also displays POSIX support\.
164 .
165 .TP
166 \fB\-v\fR
167 verbose mode
168 .
169 .TP
170 \fB\-q\fR, \fB\-\-quiet\fR
171 suppress warnings, interactivity, and notifications\. specify twice to suppress errors too\.
172 .
173 .TP
174 \fB\-C\fR, \fB\-\-[no\-]check\fR
175 add integrity check computed from uncompressed data (default: enabled)
176 .
177 .TP
178 \fB\-\-\fR
179 All arguments after \fB\-\-\fR are treated as files
180 .
181 .SH "DICTIONARY BUILDER"
182 \fBzstd\fR offers \fIdictionary\fR compression, which greatly improves efficiency on small files and messages\. It\'s possible to train \fBzstd\fR with a set of samples, the result of which is saved into a file called a \fBdictionary\fR\. Then during compression and decompression, reference the same dictionary, using command \fB\-D dictionaryFileName\fR\. Compression of small files similar to the sample set will be greatly improved\.
183 .
184 .TP
185 \fB\-\-train FILEs\fR
186 Use FILEs as training set to create a dictionary\. The training set should contain a lot of small files (> 100), and weight typically 100x the target dictionary size (for example, 10 MB for a 100 KB dictionary)\.
187 .
188 .IP
189 Supports multithreading if \fBzstd\fR is compiled with threading support\. Additional parameters can be specified with \fB\-\-train\-cover\fR\. The legacy dictionary builder can be accessed with \fB\-\-train\-legacy\fR\. Equivalent to \fB\-\-train\-cover=d=8,steps=4\fR\.
190 .
191 .TP
192 \fB\-o file\fR
193 Dictionary saved into \fBfile\fR (default name: dictionary)\.
194 .
195 .TP
196 \fB\-\-maxdict=#\fR
197 Limit dictionary to specified size (default: 112640)\.
198 .
199 .TP
200 \fB\-#\fR
201 Use \fB#\fR compression level during training (optional)\. Will generate statistics more tuned for selected compression level, resulting in a \fIsmall\fR compression ratio improvement for this level\.
202 .
203 .TP
204 \fB\-B#\fR
205 Split input files in blocks of size # (default: no split)
206 .
207 .TP
208 \fB\-\-dictID=#\fR
209 A dictionary ID is a locally unique ID that a decoder can use to verify it is using the right dictionary\. By default, zstd will create a 4\-bytes random number ID\. It\'s possible to give a precise number instead\. Short numbers have an advantage : an ID < 256 will only need 1 byte in the compressed frame header, and an ID < 65536 will only need 2 bytes\. This compares favorably to 4 bytes default\. However, it\'s up to the dictionary manager to not assign twice the same ID to 2 different dictionaries\.
210 .
211 .TP
212 \fB\-\-train\-cover[=k#,d=#,steps=#]\fR
213 Select parameters for the default dictionary builder algorithm named cover\. If \fId\fR is not specified, then it tries \fId\fR = 6 and \fId\fR = 8\. If \fIk\fR is not specified, then it tries \fIsteps\fR values in the range [50, 2000]\. If \fIsteps\fR is not specified, then the default value of 40 is used\. Requires that \fId\fR <= \fIk\fR\.
214 .
215 .IP
216 Selects segments of size \fIk\fR with highest score to put in the dictionary\. The score of a segment is computed by the sum of the frequencies of all the subsegments of size \fId\fR\. Generally \fId\fR should be in the range [6, 8], occasionally up to 16, but the algorithm will run faster with d <= \fI8\fR\. Good values for \fIk\fR vary widely based on the input data, but a safe range is [2 * \fId\fR, 2000]\. Supports multithreading if \fBzstd\fR is compiled with threading support\.
217 .
218 .IP
219 Examples:
220 .
221 .IP
222 \fBzstd \-\-train\-cover FILEs\fR
223 .
224 .IP
225 \fBzstd \-\-train\-cover=k=50,d=8 FILEs\fR
226 .
227 .IP
228 \fBzstd \-\-train\-cover=d=8,steps=500 FILEs\fR
229 .
230 .IP
231 \fBzstd \-\-train\-cover=k=50 FILEs\fR
232 .
233 .TP
234 \fB\-\-train\-legacy[=selectivity=#]\fR
235 Use legacy dictionary builder algorithm with the given dictionary \fIselectivity\fR (default: 9)\. The smaller the \fIselectivity\fR value, the denser the dictionary, improving its efficiency but reducing its possible maximum size\. \fB\-\-train\-legacy=s=#\fR is also accepted\.
236 .
237 .IP
238 Examples:
239 .
240 .IP
241 \fBzstd \-\-train\-legacy FILEs\fR
242 .
243 .IP
244 \fBzstd \-\-train\-legacy=selectivity=8 FILEs\fR
245 .
246 .SH "BENCHMARK"
247 .
248 .TP
249 \fB\-b#\fR
250 benchmark file(s) using compression level #
251 .
252 .TP
253 \fB\-e#\fR
254 benchmark file(s) using multiple compression levels, from \fB\-b#\fR to \fB\-e#\fR (inclusive)
255 .
256 .TP
257 \fB\-i#\fR
258 minimum evaluation time, in seconds (default: 3s), benchmark mode only
259 .
260 .TP
261 \fB\-B#\fR, \fB\-\-block\-size=#\fR
262 cut file(s) into independent blocks of size # (default: no block)
263 .
264 .TP
265 \fB\-\-priority=rt\fR
266 set process priority to real\-time
267 .
268 .P
269 \fBOutput Format:\fR CompressionLevel#Filename : IntputSize \-> OutputSize (CompressionRatio), CompressionSpeed, DecompressionSpeed
270 .
271 .P
272 \fBMethodology:\fR For both compression and decompression speed, the entire input is compressed/decompressed in\-memory to measure speed\. A run lasts at least 1 sec, so when files are small, they are compressed/decompressed several times per run, in order to improve measurement accuracy\.
273 .
274 .SH "ADVANCED COMPRESSION OPTIONS"
275 .
276 .SS "\-\-zstd[=options]:"
277 \fBzstd\fR provides 22 predefined compression levels\. The selected or default predefined compression level can be changed with advanced compression options\. The \fIoptions\fR are provided as a comma\-separated list\. You may specify only the options you want to change and the rest will be taken from the selected or default compression level\. The list of available \fIoptions\fR:
278 .
279 .TP
280 \fBstrategy\fR=\fIstrat\fR, \fBstrat\fR=\fIstrat\fR
281 Specify a strategy used by a match finder\.
282 .
283 .IP
284 There are 8 strategies numbered from 1 to 8, from faster to stronger: 1=ZSTD_fast, 2=ZSTD_dfast, 3=ZSTD_greedy, 4=ZSTD_lazy, 5=ZSTD_lazy2, 6=ZSTD_btlazy2, 7=ZSTD_btopt, 8=ZSTD_btultra\.
285 .
286 .TP
287 \fBwindowLog\fR=\fIwlog\fR, \fBwlog\fR=\fIwlog\fR
288 Specify the maximum number of bits for a match distance\.
289 .
290 .IP
291 The higher number of increases the chance to find a match which usually improves compression ratio\. It also increases memory requirements for the compressor and decompressor\. The minimum \fIwlog\fR is 10 (1 KiB) and the maximum is 30 (1 GiB) on 32\-bit platforms and 31 (2 GiB) on 64\-bit platforms\.
292 .
293 .IP
294 Note: If \fBwindowLog\fR is set to larger than 27, \fB\-\-long=windowLog\fR or \fB\-\-memory=windowSize\fR needs to be passed to the decompressor\.
295 .
296 .TP
297 \fBhashLog\fR=\fIhlog\fR, \fBhlog\fR=\fIhlog\fR
298 Specify the maximum number of bits for a hash table\.
299 .
300 .IP
301 Bigger hash tables cause less collisions which usually makes compression faster, but requires more memory during compression\.
302 .
303 .IP
304 The minimum \fIhlog\fR is 6 (64 B) and the maximum is 26 (128 MiB)\.
305 .
306 .TP
307 \fBchainLog\fR=\fIclog\fR, \fBclog\fR=\fIclog\fR
308 Specify the maximum number of bits for a hash chain or a binary tree\.
309 .
310 .IP
311 Higher numbers of bits increases the chance to find a match which usually improves compression ratio\. It also slows down compression speed and increases memory requirements for compression\. This option is ignored for the ZSTD_fast strategy\.
312 .
313 .IP
314 The minimum \fIclog\fR is 6 (64 B) and the maximum is 28 (256 MiB)\.
315 .
316 .TP
317 \fBsearchLog\fR=\fIslog\fR, \fBslog\fR=\fIslog\fR
318 Specify the maximum number of searches in a hash chain or a binary tree using logarithmic scale\.
319 .
320 .IP
321 More searches increases the chance to find a match which usually increases compression ratio but decreases compression speed\.
322 .
323 .IP
324 The minimum \fIslog\fR is 1 and the maximum is 26\.
325 .
326 .TP
327 \fBsearchLength\fR=\fIslen\fR, \fBslen\fR=\fIslen\fR
328 Specify the minimum searched length of a match in a hash table\.
329 .
330 .IP
331 Larger search lengths usually decrease compression ratio but improve decompression speed\.
332 .
333 .IP
334 The minimum \fIslen\fR is 3 and the maximum is 7\.
335 .
336 .TP
337 \fBtargetLen\fR=\fItlen\fR, \fBtlen\fR=\fItlen\fR
338 Specify the minimum match length that causes a match finder to stop searching for better matches\.
339 .
340 .IP
341 A larger minimum match length usually improves compression ratio but decreases compression speed\. This option is only used with strategies ZSTD_btopt and ZSTD_btultra\.
342 .
343 .IP
344 The minimum \fItlen\fR is 4 and the maximum is 999\.
345 .
346 .TP
347 \fBoverlapLog\fR=\fIovlog\fR, \fBovlog\fR=\fIovlog\fR
348 Determine \fBoverlapSize\fR, amount of data reloaded from previous job\. This parameter is only available when multithreading is enabled\. Reloading more data improves compression ratio, but decreases speed\.
349 .
350 .IP
351 The minimum \fIovlog\fR is 0, and the maximum is 9\. 0 means "no overlap", hence completely independent jobs\. 9 means "full overlap", meaning up to \fBwindowSize\fR is reloaded from previous job\. Reducing \fIovlog\fR by 1 reduces the amount of reload by a factor 2\. Default \fIovlog\fR is 6, which means "reload \fBwindowSize / 8\fR"\. Exception : the maximum compression level (22) has a default \fIovlog\fR of 9\.
352 .
353 .TP
354 \fBldmHashLog\fR=\fIldmhlog\fR, \fBldmhlog\fR=\fIldmhlog\fR
355 Specify the maximum size for a hash table used for long distance matching\.
356 .
357 .IP
358 This option is ignored unless long distance matching is enabled\.
359 .
360 .IP
361 Bigger hash tables usually improve compression ratio at the expense of more memory during compression and a decrease in compression speed\.
362 .
363 .IP
364 The minimum \fIldmhlog\fR is 6 and the maximum is 26 (default: 20)\.
365 .
366 .TP
367 \fBldmSearchLength\fR=\fIldmslen\fR, \fBldmslen\fR=\fIldmslen\fR
368 Specify the minimum searched length of a match for long distance matching\.
369 .
370 .IP
371 This option is ignored unless long distance matching is enabled\.
372 .
373 .IP
374 Larger/very small values usually decrease compression ratio\.
375 .
376 .IP
377 The minumum \fIldmslen\fR is 4 and the maximum is 4096 (default: 64)\.
378 .
379 .TP
380 \fBldmBucketSizeLog\fR=\fIldmblog\fR, \fBldmblog\fR=\fIldmblog\fR
381 Specify the size of each bucket for the hash table used for long distance matching\.
382 .
383 .IP
384 This option is ignored unless long distance matching is enabled\.
385 .
386 .IP
387 Larger bucket sizes improve collision resolution but decrease compression speed\.
388 .
389 .IP
390 The minimum \fIldmblog\fR is 0 and the maximum is 8 (default: 3)\.
391 .
392 .TP
393 \fBldmHashEveryLog\fR=\fIldmhevery\fR, \fBldmhevery\fR=\fIldmhevery\fR
394 Specify the frequency of inserting entries into the long distance matching hash table\.
395 .
396 .IP
397 This option is ignored unless long distance matching is enabled\.
398 .
399 .IP
400 Larger values will improve compression speed\. Deviating far from the default value will likely result in a decrease in compression ratio\.
401 .
402 .IP
403 The default value is \fBwlog \- ldmhlog\fR\.
404 .
405 .SS "\-B#:"
406 Select the size of each compression job\. This parameter is available only when multi\-threading is enabled\. Default value is \fB4 * windowSize\fR, which means it varies depending on compression level\. \fB\-B#\fR makes it possible to select a custom value\. Note that job size must respect a minimum value which is enforced transparently\. This minimum is either 1 MB, or \fBoverlapSize\fR, whichever is largest\.
407 .
408 .SS "Example"
409 The following parameters sets advanced compression options to those of predefined level 19 for files bigger than 256 KB:
410 .
411 .P
412 \fB\-\-zstd\fR=windowLog=23,chainLog=23,hashLog=22,searchLog=6,searchLength=3,targetLength=48,strategy=6
413 .
414 .SH "BUGS"
415 Report bugs at: https://github\.com/facebook/zstd/issues
416 .
417 .SH "AUTHOR"
418 Yann Collet