Comprimare

How to Use CentOS Unzip

How to Use CentOS Unzip
Zip is a file compression utility. It is the default file compression utility on Windows and widely used in Windows operating system. The Zip compressed files are also called zip files. The best thing about Zip is that it is cross platform. Zip files can be opened in Mac OS, Windows and Linux. You can also create Zip files from Mac OS, Windows, and Linux and open it in other operating systems.

On Linux based operating systems such as CentOS, the unzip command is used to open Zip files.

In this article I will show you how to use the unzip command to open Zip files on CentOS. I am going to use CentOS 7 for the demonstration. Let's get started.

Installing unzip on CentOS 7:

On CentOS 7, the unzip package may not be installed by default. But it is available in the official package repository of CentOS 7. So it is very easy to install.

First update the YUM package repository cache with the following command:

$ sudo yum makecache

The YUM package repository cache should be updated.

Now install unzip with the following command:

$ sudo yum install unzip

Now press y and then press to continue.

unzip should be installed.

Now to check whether unzip works, run the following command:

$ unzip -v

As you can see, unzip is working perfectly.

Working with Zip Files Using Graphical User Interface:

If you have graphical desktop environment such as GNOME desktop environment installed on your CentOS operating system, then working with Zip files is pretty easy.

As you can see, I have app.zip file in the ~/Downloads directory of my HOME directory.

Now if you right click on the zip file, you should be able to see the following options. The first option is Open With Archive Manager. If you double click on a Zip file, it will open with the Archive Manager by default.

You can also click on Extract Here to extract the zip file.

As you can see, the zip file is opened in the Archive Manager and I can see all the contents of the Zip file.

From the Archive Manager, you can click on Extract to extract the contents of the Zip file.

You should see the following window. You can click on the Extract button to extract the Zip file in the current directory. If you wish, you can create a new folder and extract the contents of the Zip file there.

I create a new directory myapp/ and extracted the contents of the Zip file there.

As you can see, the contents of the Zip file are correctly extracted into the myapp/ directory.

You can also select specific files and folders from the Archive Manager and drag and drop them on a directory. Only your desired files and folders will be extracted.

Listing the Contents of the Zip file using unzip Command:

You can list all the files and directories stored inside a Zip file with the following command:

$ unzip -l app.zip

As you can see, all the contents of the Zip archive app.zip is listed.

Extracting a Zip File using unzip Command:

You can extract a Zip file using the unzip command very easily.

To extract a Zip file into the current directory where the zip file is, run the following command:

$ unzip app.zip

NOTE: Here app.zip is the Zip file that I am extracting.

The contents of the Zip file should be extracted to your current working directory.

As you can see, all the files and directories of app.zip is extracted.

In the earlier example, all the files were extracted in the current directory. You may want to extract the contents of the Zip file to any specific directory. You can also do that with the unzip command.

First create the directory where you will be extracting the Zip file with the following command:

$ mkdir ~/Downloads/myapp

Now run the following command to extract the Zip file app.zip into the

~/Downloads/myapp directory:
$ unzip app.zip -d ~/Downloads/myapp

The contents of the app.zip file is extracted into the ~/Downloads/myapp directory as you can see in the screenshot below.

The ls command also verifies that the Zip file was extracted in the desired directory.

Extracting Specific Files from the Zip File using unzip Command:

You can also extract specific files and directories from the Zip file using unzip command.

For example, let's say you want to extract only server.js file from app.zip file, run the following command:

$ unzip app.zip server.js

server.js should be extracted.

As you can see, only server.js was extracted to the current working directory.

You can also specify a directory where the files and directories should be extracted as follows:

$ unzip app.zip server.js -d ~/Downloads/myapp

You can also extract a specific subdirectory from the Zip file as follows:

$ unzip app.zip 'models/*' -d ~/Downloads/mypp

As you can see the directory models/ and all the contents of the directory was extracted into the ~/Downloads/myapp directory.

That's how you use Unzip on CentOS. Thanks for reading this article.

SuperTuxKart for Linux
SuperTuxKart is a great title designed to bring you the Mario Kart experience free of charge on your Linux system. It is pretty challenging and fun to...
Battle for Wesnoth Tutorial
The Battle for Wesnoth is one of the most popular open source strategy games that you can play at this time. Not only has this game been in developmen...
0 A.D. Tutorial
Out of the many strategy games out there, 0 A.D. manages to stand out as a comprehensive title and a very deep, tactical game despite being open sourc...