Connect with us

Hi, what are you looking for?

Geeks

Learn How To Compress And Extract Files In Linux

Image Source: Zakharchuk / Shutterstock
Short Bytes: In this article in the Linux Lexicon series, we shall discover how to compress and extract files in Linux. We will be focusing upon the tar, gzip, and gunzip commands along with their associated options. These commands have simple syntax to make the task easier.
While there are special software designed for compressing and extracting files in Linux, there is no need to bother yourself with the tardy process of finding, choosing and installing one because everything can be done through the Terminal itself. Let’s find out how:

Compressing and extracting files in Linux:

Tar Command

The tar command is primarily used to bundle the required files or directories into an archive. Depending on the option used we can also use the tar command to extract or list the contents of a tar archive. The syntax for using the tar command for archiving and compressing files is as follows:

tar [-] c|x|t f tarfile [pattern]

Some of the most common options used along with the tar command are as follows:

c – Create a tar archive
x – Extract files from the archive
t – Display the table of contents (list)
v – Be verbose
z – Use compression
f – Used to specify the file to use

Now before all of this goes over your head, let me explain it with the help of an example. Suppose I have a directory named “Archive&Compress” and I want to create a tar archive for it. Here is how it can be done:

In order to create the archive in Linux and use compression, we use the ‘c‘ option and use the ‘f‘ option to specify the file. When the archive “ac.tar” in our example has been created, we can use the ‘t‘ option to list the contents starting with the name of the directory and the files included within the directory.

Advertisement. Scroll to continue reading.
AIAD

Now I will teach you how to extract the content of the archived file. Suppose I wish to extract the contents of the tar archive to my desktop, here is how I will proceed:

Archive and Compress Files in Linux tar2

You will notice that we used the ‘x‘ option for extracting the contents. Now in case you want a verbose listing of what the extract operation is doing, then you can use the ‘v‘ option, like this:

Archive and Compress Files in Linux tar3

Also Read: 20 Quirky Things You Didn’t Know The Linux Terminal Could Do

Gzip and Gunzip Command

The next part of our tutorial on how to archive and compress files in Linux focuses on compressing files. To compress files and save memory space, we use the gzip command. To uncompress the files, we use the gunzip command. The format for using the commands is:

gzip/gunzip filename

Consider the following example, suppose I wish to compress a file named “impress2”. Here is how I will proceed:

Archive and Compress Files in Linux gzip

To uncompress it, I will use the gunzip command, which works in the following manner:

Archive and Compress Files in Linux gunzip

Note: The du command has been used to find out the estimated space used by each file

You can further check out the man pages of these commands to learn more about archiving and compressing files in Linux and discover other options associated with the mentioned commands. You can also check out the complete Linux command reference. Happy learning.

Image Source: Zakharchuk / Shutterstock

Advertisement. Scroll to continue reading.
AIAD

You May Also Like

Geeks

Latest information about Manjaro Linux’s laptop project dates back to 2017 when the Manjaro Spitfire was released in partnership with Station X. However, updates...

Geeks

Recently, I discovered a Java compiler for web applications that I’d like to share with you. It’s called CheerpJ, and it has the ability...

Geeks

Following ECMAScript 2016, the ECMA International has given the green light to the latest edition of the ECMAScript Language Specification, ECMAScript 2017. JavaScript, which...

Geeks

After over 2 years of work, the long-awaited stable release of Devuan GNU+Linux 1.0 is now accessible for download. This alternative distribution has been...