// install sudo apt install zip unzip // zip zip -r example.zip original_folder // unzip unzip file.zip -d destination_folder
sudo apt-get install unzip unzip file.zip
unzip file.zip -d destination_folder
After installing the unzip utility, if you want to extract to a particular destination folder, you can use: unzip file.zip -d destination_folder If the source and destination directories are the same, you can simply do: unzip file.zip
unzip filename.zip