1PIXZ(1) PIXZ(1)
2
3
4
6 pixz - parallel, indexed xz compressor
7
9 pixz [OPTIONS] [INPUT [OUTPUT]]
10
12 pixz compresses and decompresses files using multiple processors. If
13 the input looks like a tar(1) archive, it also creates an index of all
14 the files in the archive. This allows the extraction of only a small
15 segment of the tarball, without needing to decompress the entire
16 archive.
17
19 By default, pixz uses standard input and output, unless INPUT and
20 OUTPUT arguments are provided. If pixz is provided with input but no
21 output, it will delete the input once it’s done.
22
23 -d
24 Decompress, instead of compress.
25
26 -t
27 Force non-tarball mode. By default, pixz auto-detects tar data, and
28 if found enters tarball mode. When compressing in non-tarball mode,
29 no archive index will be created. When decompressing, fast
30 extraction will not be available.
31
32 -l
33 List the archive contents. In tarball mode, lists the files in the
34 tarball. In non-tarball mode, lists the blocks of compressed data.
35
36 -x PATH
37 Extract certain members from an archive, quickly. All members whose
38 path begins with PATH will be extracted.
39
40 -i INPUT
41 Use INPUT as the input.
42
43 -o OUTPUT
44 Use OUTPUT as the output.
45
46 -#
47 Set compression level, from -0 (lowest compression, fastest) to -9
48 (highest compression, slowest).
49
50 -e
51 Use "extreme" compression, which is much slower and only yields a
52 marginal decrease in size.
53
54 -p CPUS
55 Set the number of CPU cores to use. By default pixz will use the
56 number of cores on the system.
57
58 -f FRACTION
59 Set the size of each compression block, relative to the LZMA
60 dictionary size (default is 2.0). Higher values give better
61 compression ratios, but use more memory and make random access less
62 efficient. Values less than 1.0 aren’t very efficient.
63
64 -q SIZE
65 Set the number of blocks to allocate for the compression queue
66 (default is 1.3 * cores + 2, rounded up). Higher values give better
67 throughput, up to a point, but use more memory. Values less than
68 the number of cores will make some cores sit idle.
69
70 -h
71 Show pixz’s online help.
72
74 pixz < myfile > myfile.xz
75 Compress a file with pixz.
76
77 pixz myfile
78 Compress to myfile.pxz, removing the original.
79
80 tar -Ipixz -cf output.tpxz directory
81 Make tar use pixz for compression.
82
83 pixz -x path/to/file < input.tpxz | tar x
84 Extract one file from an archive, quickly.
85
87 pixz is written by Dave Vasilevsky.
88
90 The pixz homepage: http://github.com/vasi/pixz/
91
92 Source downloads: https://github.com/vasi/pixz/releases/
93
95 Copyright © 2009-2010 Dave Vasilevsky. Use of this software is granted
96 under the FreeBSD License.
97
99 xz(1), tar(1)
100
101
102
103 1.0.6 11/05/2015 PIXZ(1)