Skip to content
Home » How to unzip a zip file in Ubuntu

How to unzip a zip file in Ubuntu

In order to unzip a zip file in Ubuntu initially install unzip using the below command.

sudo apt-get install unzip

Once the unzip is installed successfully then, If you want to extract to a specific destination folder follow the given command:

unzip file.zip -d path/to/destination/folder

If you want unzip in the current working directory then run:

unzip file_name.zip

Also Read:

How to list all installed packages Ubuntu