Skip to content


How to create and extract zip, tar, tar.gz and tar.bz2 files in Linux

Linux

Data compression has been extremely useful to us over the years. Whether its a zip file containing images to be sent in a mail or a compressed data backup stored on a server, we use data compression to save valuable hard drive space or to make the downloading of files easier. There are compression formats out there which allow us to sometimes compress our data by 60% or more. I’ll run you through using some of these formats to compress and decompress files and directories on a Linux machine. We’ll cover the basic usage of zip, tar, tar.gz and the tar.bz2 formats. These are some of the most popular formats for compression used on Linux machines.

Before we delve into the usage of the formats I’d like to share some of my experience using the various formats of archiving. I’m talking about only a few data compression formats here, and there are many more out there. I’ve realized that I need two or three formats of compression that I’m comfortable using, and stick to them. The zip format is definitely one of them. This is because zip has become the de-facto standard choice for data compression, and it works on Windows as well. I use the zip format for files that I might need to share with Windows users. I like to use the tar.gz format for files that I would only use on my Mac and Linux machines.

ZIP

Zip is probably the most commonly used archiving format out there today. Its biggest advantage is the fact that it is available on all operating system platforms such as Linux, Windows, and Mac OS, and generally supported out of the box. The downside of the zip format is that it does not offer the best level of compression. Tar.gz and tar.bz2 are far superior in that respect. Let’s move on to usage now.

To compress a directory with zip do the following:

# zip -r archive_name.zip directory_to_compress

Here’s how you extract a zip archive:

# unzip archive_name.zip

TAR

Tar is a very commonly used archiving format on Linux systems. The advantage with tar is that it consumes very little time and CPU to compress files, but the compression isn’t very much either. Tar is probably the Linux/UNIX version of zip – quick and dirty. Here’s how you compress a directory:

# tar -cvf archive_name.tar directory_to_compress

And to extract the archive:

# tar -xvf archive_name.tar.gz

This will extract the files in the archive_name.tar archive in the current directory. Like with the tar format you can optionally extract the files to a different directory:

# tar -xvf archive_name.tar -C /tmp/extract_here/

TAR.GZ

This format is my weapon of choice for most compression. It gives very good compression while not utilizing too much of the CPU while it is compressing the data. To compress a directory use the following syntax:

# tar -zcvf archive_name.tar.gz directory_to_compress

To decompress an archive use the following syntax:

# tar -zxvf archive_name.tar.gz

This will extract the files in the archive_name.tar.gz archive in the current directory. Like with the tar format you can optionally extract the files to a different directory:

# tar -zxvf archive_name.tar.gz -C /tmp/extract_here/

TAR.BZ2

This format has the best level of compression among all of the formats I’ve mentioned here. But this comes at a cost – in time and in CPU. Here’s how you compress a directory using tar.bz2:

# tar -jcvf archive_name.tar.bz2 directory_to_compress

This will extract the files in the archive_name.tar.bz2 archive in the current directory. To extract the files to a different directory use:

# tar -jxvf archive_name.tar.bz2 -C /tmp/extract_here/

Data compression is very handy particularly for backups. So if you have a shell script that takes a backup of your files on a regular basis you should think about using one of the compression formats you learned about here to shrink your backup size.

Over time you will realize that there is a trade-off between the level of compression and the the time and CPU taken to compress. You will learn to judge where you need a quick but less effective compression, and when you need the compression to be of a high level and you can afford to wait a little while longer.

Posted in Linux.


Get Simple Help tutorials just like this one in your email inbox every day - for free! Just enter your email address below:

 

You can always opt out of this email subscription at any time.

31 Responses

Stay in touch with the conversation, subscribe to the RSS feed for comments on this post.

  1. myhnet says

    tar just for packaging, not for compress

  2. angelo says

    Utile consiglio, grazie, ma vorrei un consiglio
    metti che ho un file.zip sul sito e vorrei estrarlo li o su un’altra cartella, come posso fare?

    Forse basta scrivere un file.php con questo dentro?

    # Decomprimere archive_name.zip

  3. Como?? says

    ¿Donde tengo que poner lo de
    #Zip-r archive_name.zip directory_to_compress??

  4. JL says

    Tar doesn’t compress anything, it just archives. Gzip compresses and so .tar.gz is a compressed archive.

  5. marco says

    How can i vote for this article? :P

  6. linux user says

    thank you !!!

  7. D3M-TEAM says

    Thanks Iam Need A Program tar.gz

  8. pepijn says

    How do I exclude hidden files? I’m using bsdtar 2.6.2 – libarchive 2.6.2 and the usual solutions don’t seem to work.

  9. Rago says

    Spasibo

  10. hossam khaled al-dalely says

    ahossam10023

  11. hossam khaled al-dalely says

    hossa 1002

  12. DASDAS says

    Muchas Gracias tio.

  13. bwalls2 says

    Can you compress tar with zip, not bzip or gzip or compress but zip? And if so would it have a zip extension?

  14. bwalls2 says

    Can you use tar with the zip utility? And if so would it have a zip extension. As far as I can tell you can only compress files with tar using bzip, gzip, compress having a .bz2, tgz, or Z extension(I think, might be slightly off). As far as I can tell, zip will work with linux but it doesent seem able to use files compressed with zip.

  15. Frank says

    good stuff. archiving is good ;]

  16. rahman says

    thanks, that’s really a common question

  17. Martin says

    Thank you very much!
    I keep forget/mix the compress options, you save my day!

  18. Yaro Kasear says

    It pains me to say this, but tar is not compression at all. That’s why there IS tar.gz and tar.bz2.

    There are other formats our there that have a much better compression ratio than these. 7Zip and LZMO come to mind.

  19. php ide says

    just to let you know that under unix freebsd i dont have unzip installed but the following command unzipped my zip file quite nicely

    tar -xf file.zip

    thanks for the info!

  20. ss says

    .tar.gz and .tar.bz2 are common ways too compress the files

  21. Nasiru Abdullahi says

    From the Foregoing ; it means that we that used Windows operating system cannot access file with .tg, tar, etc, extensions. if it is possible how do i go about it pls.

  22. Yaro Kasear says

    @Nasiru Abdullahi – Well, out of the box you may not from Windows. My recommendation is to get 7-Zip. It opens just about any archive or compression format, including UNIX tarballs.

    Out of the box you don’t really get support for very many formats at all. Windows barely supports zip natively and that’s about all.

    Linux will usually start out with at least tar, gzip, and bzip2 support right out of the gate as usually its package manager and many other applications outright require it to even run. And things like basic rar and zip support are pretty easy to get running with a single request to the package manager.

  23. newa says

    thax

  24. amber says

    nice, tank you, everything at one breath!

  25. Mikal says

    Great article
    you save my lot time
    thanks

Continuing the Discussion

  1. How to create and extract zip, tar, tar.gz and tar.bz2 files in Linux « My Blog linked to this post on February 14, 2010

    [...] out there today. Its biggest advantage is the fact that it is available on all operating system platforms such as Linux, Windows, and Mac OS, and generally supported out of the box. The downside of the zip [...]

  2. Tarballs « How I Linux linked to this post on March 8, 2010

    [...] compression is very handy particularly for backups. So if you have a shell script that takes a backup of your files on a regular basis you should think about using one of the [...]

  3. TLN » Blog Archive » Brer Rabbit and Taring linked to this post on February 6, 2011

    [...] CPU to com­press files, but the com­pres­sion isn’t very much either. Tar is prob­a­bly the Linux/UNIX ver­sion of zip – quick and dirty. Here’s how you com­press [...]

  4. Reading the Classics: War and Peace by Tolstoy : Steven Winterhalter linked to this post on November 22, 2011

    [...] It is a tar.gz compressed file. If you need help decompressing this file or would like parts of this in an uncompressed format just leave a comment to this post. [...]

  5. ECAE — Shopex电子商务云的梦想空间 » [Denny -- 个人知识库] Linux linked to this post on December 21, 2011

    [...] http://www.simplehelp.net/2008/12/15/how-to-create-and-extract-zip-tar-targz-and-tarbz2-files-in-lin... How to create and extract zip, tar, tar.gz and tar.bz2 files in Linux – Simple Help [...]



Some HTML is OK

or, reply to this post via trackback.