gzip Compress a directory (folder)

Raymond Raymond visibility 1,280 event 2021-08-12 access_time 3 years ago language English
more_vert

This code snippet shows how to compress a whole directory or folder using tar command. 

Code snippet

tar -zcvf archive-file-name.tar.gz your-folder/ 

Use man tar to find out the details of the options of the above commands.

  • -z - compress it using the z (gzip) algorithm
  • -c - (create) an archive from the files in directory
  • -v - (verbosely) list all the files it adds to the archive
  • -f - store the output as archive-file-name.tar.gz

To unzip it, using the command below:

tar -zxvf archive-file-name.tar.gz

References

Can I zip an entire folder using gzip? - Unix & Linux Stack Exchange

More from Kontext
copyright This page is subject to Site terms.
Like this article?
Share on
comment Comments
No comments yet.

Please log in or register to comment.

account_circle Log in person_add Register

Log in with external accounts