Uzing Tar To Compress And Uncompress Files

The tar command can be used to compress or extract one or more files in Linux. A tar file isn't actually a compressed format, instead it is a collection of files within a single file. The tar command can take one or more files, convert them into a tar file and then compress it into a gzip file format. The file created will have the extension tar.gz.

There are a large number of flags that can be used but the main ones for everyday use are.

  • z : Use gzip compression to create a tar.gz file.
  • c : Create a tar file.
  • f : This is the name of the file to be used in the process of creation or extraction.
  • x : Extract or restore the file into the original file or files.
  • v : Verbose. Report on every file extracted or added.

The verbose (v) flag can be useful when learning the tar command as it shows you everything that is going on with the process. This can cause things to slow down when compressing a large amount of files.

The command to create a compressed file from a directory is as follows. This will create an archive with the file name of archive.tar.gz from the directory passed.

tar -czf archive.tar.gz directory

The command to extract an archive to a directory is as follows. This will extract an archive file called archive.tar.gz and restore it's original contents.

tar -xzf archive.tar.gz

I'm always forgetting which way around the letters go when compressing or extracting files. One way to remember which way around the letters go is with this simple trick.

tar -xzf = eXtract Ze Files!
tar -czf = Compress Ze Files!

Add new comment

The content of this field is kept private and will not be shown publicly.
CAPTCHA
11 + 3 =
Solve this simple math problem and enter the result. E.g. for 1+3, enter 4.
This question is for testing whether or not you are a human visitor and to prevent automated spam submissions.