Compression

From Tomelec
Revision as of 11:18, 10 October 2011 by Tom (talk | contribs) (Created page with "== Fast GZIP compression with ''pigz'' on multiple processors / cores == Pigz is a parallel implementation of gzip. Functionality should be the same afaik. === tar.gz with pigz ...")

(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to: navigation, search

Fast GZIP compression with pigz on multiple processors / cores

Pigz is a parallel implementation of gzip. Functionality should be the same afaik.

tar.gz with pigz

Really easy:

tar -c * | pigz > file.tar.gz

Decompression:

pigz -dc file.tar.gz | tar xf -

pigz project page