How to Zip UnZip Files and Directories in Ubuntu 22.04?

Sep 29, 2022 . Admin



Hi Guys,

This tutorial shows you How to Zip UnZip Files and Directories in Ubuntu 22.04. you will learn Zip or Unzip Files and Folders Using Command Line on Ubuntu. I explained simply step by step unzip zip file from the Terminal?. This article will give you simple example of How to Zip and Unzip Directories on Linux. You just need to some step to done Create Zip and Unzip File in Linux.

You can use this post for ubuntu 14.04, ubuntu 16.04, ubuntu 18.4, ubuntu 20.04, ubuntu 21 and ubuntu 22.04 versions.

To learn how to zip and unzip files and directories or password protected files and directories in ubuntu / linux using command line or terminal:

How to Zip Files And Directories

zip is not installed by default in most Linux distributions. So, you can easily install it using the following command.

Now open your terminal and execute the following command on it to install zip package:

Step 1: To install zip on Ubuntu and Debian:
sudo apt install zip
Step 2: To install zip on CentOS and Fedora:
sudo yum install zip
Step 3: To ZIP Files and Directories

To zip one file. So, you can easily zip it by using the following command:

zip filename

To zip one directory. So, you can easily zip it by using the following command:

zip directory_name
Step 4: To ZIP Multiple Files and Directories

To zip multiple file. So, you can easily zip it by using the following command:

zip archivename.zip filename1 filename2 filename3

To zip multiple directory. So, you can easily zip it by using the following command:

zip -r archivename.zip directory_name1 directory_name2 file1 file1
Step 5: Creating a Password Protected ZIP file

To create password procted zip file in linux system. So, you can execute the following command on your terminal:

zip -e  archivename.zip directory_name

The command will be prompted to enter and verify the archive password:

Enter password:
Verify password:
How to Unzip Files And Directories

unzip is not installed by default in most Linux distributions. So, you can easily install it using the following command.

Now open your terminal and execute the following command on it to install zip package:

Step 1: To install unzip on Ubuntu and Debian:
sudo apt install unzip
Step 2: To install unzip on CentOS and Fedora:
sudo yum install unzip
Step 3: To unzip Files and Directories

To unzip one file. So, you can easily unzip it by using the following command

unzip filename

To unzip one directory. So, you can easily unzip it by using the following command

unzip directory_name
Step 4: To unzip Multiple Files and Directories

To zip multiple file. So, you can easily unzip it by using the following command:

unzip archivename.zip filename1 filename2 filename3

To unzip multiple directory. So, you can easily unzip it by using the following command:

Alternate way to unzip multiple files and directories in linux using command line. You can use regular expressions, as shown below:

unzip '*.zip'
zip -r archivename.zip directory_name1 directory_name2 file1 file1
Step 5: Unzip a ZIP File to a Different Directory

To unzip file or directories in diffrent direcoties, so you can use the following command:

unzip filename.zip -d /path/to/directory

The command will be prompted to enter and verify the archive password:

Step 6: Unzip a Password Protected ZIP file or Directories

To unzip password procted file or directories in linux using command line, so you can use the following command:

unzip -P PasswOrd filename.zip
unzip filename.zip -d /path/to/directory
#Ubuntu