Skip to content
Home » unzip

unzip

Visit Tacticalware.com for information related to this tag and others. We look forward to assisting in your tech projects with our in-depth knowledgebase…

PARROT OS – UNZIP FILES ALONG WITH ZIPPED FILES IN SUBFOLDERS

This is a quick how-to on unzipping files using Parrot Security OS

Open a terminal
Navigate to the directory where the zipped files are
Type
unzip -d filename.zip

If you have a Zipped file that contains sub folders with additional zipped files you can unzip everything by typing
for z in *.zip; do unzip “$z”; done

You’re welcome

Opening 7zip files on Ubuntu 18.04

How to Install the 7zip Utility on Ubuntu 18.04

By default you can not download the p7zip-full package from the repo, as it returns the following error:  Package ‘p7zip-full’ has no installation candidate.   To fix this error follow the steps below

From the terminal

sudo bash

add-apt-repository universe

apt install p7zip-full

p7zip -d filename.7z

Thats it!