Difference between revisions of "Compression"

From Tomelec
Jump to: navigation, search
(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 ...")
(No difference)

Revision as of 11:18, 10 October 2011

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