Compression
From Tomelec
Revision as of 10: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 ...")
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 -