Skip to content

Latest commit

 

History

History
227 lines (226 loc) · 5.95 KB

pigz.1

File metadata and controls

227 lines (226 loc) · 5.95 KB
 
Dec 12, 2016
Dec 12, 2016
1
.TH PIGZ 1 "December xx, 2016"
Jan 25, 2010
Jan 25, 2010
2
3
4
5
6
.SH NAME
pigz, unpigz \- compress or expand files
.SH SYNOPSIS
.ll +8
.B pigz
Dec 12, 2016
Dec 12, 2016
7
.RB [ " \-cdfhikKlLmMnNqrRtz0..9,11 " ]
Jan 25, 2010
Jan 25, 2010
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
[
.B -b
.I blocksize
]
[
.B -p
.I threads
]
[
.B -S
.I suffix
]
[
.I "name \&..."
]
.ll -8
.br
.B unpigz
Dec 12, 2016
Dec 12, 2016
26
.RB [ " \-cfhikKlLmMnNqrRtz " ]
Jan 25, 2010
Jan 25, 2010
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
[
.B -b
.I blocksize
]
[
.B -p
.I threads
]
[
.B -S
.I suffix
]
[
.I "name \&..."
]
.SH DESCRIPTION
.I Pigz
compresses using threads to make use of multiple processors and cores.
The input is broken up into 128 KB chunks with each compressed in parallel.
The individual check value for each chunk is also calculated in parallel.
The compressed data is written in order to the output, and a combined check
value is calculated from the individual check values.
.PP
The compressed data format generated is in the gzip, zlib, or single-entry
zip format using the deflate compression method. The compression produces
partial raw deflate streams which are concatenated by a single write thread
and wrapped with the appropriate header and trailer, where the trailer
contains the combined check value.
.PP
Each partial raw deflate stream is terminated by an empty stored block
(using the Z_SYNC_FLUSH option of zlib), in order to end that partial bit
stream at a byte boundary. That allows the partial streams to be
concatenated simply as sequences of bytes. This adds a very small four to
five byte overhead to the output for each input chunk.
.PP
The default input block size is 128K, but can be changed with the
.B -b
Jan 25, 2010
Jan 25, 2010
64
65
option. The number of compress threads is set by default to the number
of online processors,
Dec 18, 2011
Dec 18, 2011
66
which can be changed using the
Jan 25, 2010
Jan 25, 2010
67
68
69
70
71
72
73
74
75
76
77
78
79
.B -p
option. Specifying
.B -p 1
avoids the use of threads entirely.
.PP
The input blocks, while compressed independently, have the last 32K of the
previous block loaded as a preset dictionary to preserve the compression
effectiveness of deflating in a single thread. This can be turned off using
the
.B -i
or
.B --independent
option, so that the blocks can be decompressed
Oct 2, 2016
Oct 2, 2016
80
81
82
independently for partial error recovery or for random access. This also
inserts an extra empty block to flag independent blocks by prefacing
each with the nine-byte sequence (in hex): 00 00 FF FF 00 00 00 FF FF.
Jan 25, 2010
Jan 25, 2010
83
84
85
86
87
88
89
90
.PP
Decompression can't be parallelized, at least not without specially prepared
deflate streams for that purpose. As a result,
.I pigz
uses a single thread
(the main thread) for decompression, but will create three other threads for
reading, writing, and check calculation, which can speed up decompression
under some circumstances. Parallel decompression can be turned off by
Dec 18, 2011
Dec 18, 2011
91
specifying one process
Jan 25, 2010
Jan 25, 2010
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
(
.B -dp 1
or
.B -tp 1
).
.PP
Compressed files can be restored to their original form using
.I pigz -d
or
.I unpigz.
.SH OPTIONS
.TP
.B -# --fast --best
Regulate the speed of compression using the specified digit
.IR # ,
where
.B \-1
or
.B \-\-fast
indicates the fastest compression method (less compression)
and
.B \-9
or
.B \-\-best
indicates the slowest compression method (best compression).
Mar 4, 2013
Mar 4, 2013
118
119
120
.B -0
is no compression.
.B \-11
May 30, 2016
May 30, 2016
121
122
gives a few percent better compression at a severe cost in execution time,
using the zopfli algorithm by Jyrki Alakuijala.
Mar 4, 2013
Mar 4, 2013
123
124
The default is
.B \-6.
Jan 25, 2010
Jan 25, 2010
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
.TP
.B -b --blocksize mmm
Set compression block size to mmmK (default 128KiB).
.TP
.B -c --stdout --to-stdout
Write all processed output to stdout (won't delete).
.TP
.B -d --decompress --uncompress
Decompress the compressed input.
.TP
.B -f --force
Force overwrite, compress .gz, links, and to terminal.
.TP
.B -h --help
Display a help screen and quit.
.TP
.B -i --independent
Compress blocks independently for damage recovery.
.TP
.B -k --keep
Do not delete original file after processing.
.TP
.B -K --zip
Compress to PKWare zip (.zip) single entry format.
.TP
.B -l --list
List the contents of the compressed input.
.TP
.B -L --license
Display the
.I pigz
license and quit.
.TP
Dec 12, 2016
Dec 12, 2016
158
159
160
161
162
163
164
165
166
167
.B -m --no-time
Do not store or restore the modification time. -Nm will store or restore the
name, but not the modification time. Note that the order of the options is
important.
.TP
.B -M --time
Store or restore the modification time. -nM will store or restore the
modification time, but not the name. Note that the order of the options is
important.
.TP
Jan 25, 2010
Jan 25, 2010
168
.B -n --no-name
Dec 12, 2016
Dec 12, 2016
169
170
171
172
173
Do not store or restore the file name or the modification time. This is the
default when decompressing. When the file name is not restored from the header,
the name of the compressed file with the suffix stripped is the name of the
decompressed file. When the modification time is not restored from the header,
the modification time of the compressed file is used (not the current time).
Jan 25, 2010
Jan 25, 2010
174
175
.TP
.B -N --name
Dec 12, 2016
Dec 12, 2016
176
177
Store or restore both the file name and the modification time. This is the
default when compressing.
Jan 25, 2010
Jan 25, 2010
178
179
180
181
182
183
184
185
186
187
.TP
.B -p --processes n
Allow up to n processes (default is the number of online processors)
.TP
.B -q --quiet --silent
Print no messages, even on error.
.TP
.B -r --recursive
Process the contents of all subdirectories.
.TP
Jan 1, 2012
Jan 1, 2012
188
189
190
.B -R --rsyncable
Input-determined block locations for rsync.
.TP
Jan 25, 2010
Jan 25, 2010
191
192
193
194
195
196
197
198
199
200
.B -S --suffix .sss
Use suffix .sss instead of .gz (for compression).
.TP
.B -t --test
Test the integrity of the compressed input.
.TP
.B -v --verbose
Provide more verbose output.
.TP
.B -V --version
Oct 2, 2016
Oct 2, 2016
201
Show the version of pigz. -vV also shows the zlib version.
Jan 25, 2010
Jan 25, 2010
202
203
204
.TP
.B -z --zlib
Compress to zlib (.zz) instead of gzip format.
Feb 5, 2010
Feb 5, 2010
205
206
207
.TP
.B --
All arguments after "--" are treated as file names (for names that start with "-")
Oct 10, 2013
Oct 10, 2013
208
209
210
211
212
213
214
215
216
.TP
These options are unique to the -11 compression level:
.TP
.B -F --first
Do iterations first, before block split (default is last).
.TP
.B -I, --iterations n
Number of iterations for optimization (default 15).
.TP
Dec 12, 2016
Dec 12, 2016
217
.B -J, --maxsplits n
Oct 10, 2013
Oct 10, 2013
218
219
220
221
Maximum number of split blocks (default 15).
.TP
.B -O --oneblock
Do not split into smaller blocks (default is block splitting).
Jan 25, 2010
Jan 25, 2010
222
223
224
225
226
.SH "COPYRIGHT NOTICE"
This software is provided 'as-is', without any express or implied
warranty. In no event will the author be held liable for any damages
arising from the use of this software.
.PP
Oct 2, 2016
Oct 2, 2016
227
Copyright (C) 2007-2016 Mark Adler <madler@alumni.caltech.edu>