Skip to main content
Commands

Compress Files Faster Using Pigz on Linux

Pigz is a faster compression tool. Learn how to use it for generating .gz compressed file faster in Linux.

Sagar Sharma

I have a pretty good reason why you should replace gzip with pigz utility.

Yes, that's the performance and the difference is huge:

performace difference between gzip and pigz on Linux

And as you can see, even using gzip command with the fastest compression possible, took 44 seconds.

Whereas with the default speed, the pigz only took 6.5 seconds.

So with the above results, pigs is 6.75 times faster than gzip!

And the best part is you can make it even faster. Seems like a fair deal? Here's how you install and use it.

How to use the pigz command in Linux

You may be wondering how the pigz can be so fast. Well, the answer is hidden in its name.

Parallel Implementation of GZip (pigz).

This means it will use multiple cores and processors making it an excellent replacement for gzip command.

But it does not come pre-installed but can be installed through the default repository.

Such as for Ubuntu/Debian-based distros:

sudo apt install pigz

For Arch-based distros:

sudo pacman -S pigz

For Fedora/RHEL base:

sudo dnf install pigz

Now, let's jump to the examples!

Compress files using the pigz command on Linux

To compress files using the pigz command, all you need to do is append the filename or path to the file and it will get your job done:

pigz Target_file

For example, here, I compressed a Fedora ISO file:

compress files using the pigz command on Linux

And if you notice carefully, it will remove the original file. So what if you want to keep the original file? Here's how you do it:

Keep the original file while performing compression on Linux

To keep the original file, all you need to do is use the -k flag:

pigz -k Target_file

For example, here, I will be using the same Fedora ISO file and will use the ls command to show the contents of the directory:

Keep the original file while performing compression on Linux

And as you can see, the original file is as it is!

Speed up the compression process using the pigz command

The pigz command supports compression levels from 1 to 9.

Where,

  • Level 1 offers the fastest but the least compression.
  • Level 6 is what is used by default.
  • Level 9 offers the slowest but the best compression.

So let's say if I want to apply level 1 compression, I will have to use the -1 flag whereas to use level 9, the -9 flag is used.

For example, Here, I will be using level 1 compression:

pigz -1 Targeted_file
Speed up the compression process using the pigz command in linux

And as you can see, it only took 5 seconds to compress a file worth 2GB in size!!!

Allocate the number of cores for compression using the pigz command

As I mentioned earlier, the pigz utility uses multiple cores and processors, you can also manually specify how many cores should be allocated to the process.

And if you want to know the number of CPU cores, you can use the nproc command:

nproc
know number of CPU cores in linux

Once you know how many cores you have, you can use the -p flag to specify the number of processing cores.

For example, here, I allocated 6 cores for the compression process:

pigz -p4 Targeted_file
Allocate the number of cores for compression using the pigz command

Zip files faster using the pigz command on Linux

Yes, you can use the pigz command to zip files on Linux.

To zip files using the pigz command, you will have to use the -K or the --zip flag:

pigz --zip Targeted_file
zip files in linux terminal using the pigz command

Want to know how you can unzip the files? We have a detailed guide for that purpose:

Unzip command in Linux: 8 Practical Examples
Got a zip file in the terminal? Learn how to use the unzip command in Linux with these practical examples.

Uncompress files using the pigz command

The pigz command can also be used to decompress the files.

To uncompress files, all you need to do is use the -d flag:

pigz -d Compressed_file
uncompress files in linux terminal using the pigz command

Pretty cool! Right?

Wrapping Up

This was a quick tutorial on how you can use the pigz command on Linux. I have been using this tool for over a month now and I'm not going to gzip command.

And if you have any queries or suggestions, let me know in the comments.  

Sagar Sharma