0

Simple question: how do you unzip or extract .zip archives/files in Ubuntu 12.04 Unity?

4 Answers4

0

All you need to do is to simply click it with right mouse button and choose "Extract here".

Jacajack
  • 694
0

You can just right click and press "Extract Here" to your desired location. Hope this helps!

UPDATE: This could help. Upvote if it helps please.

How to extract zip file to specific folder

OR

How to unzip a zip file from the Terminal?

Apad121
  • 443
  • 2
  • 7
  • 19
0

In Unity, you can right click on the .zip file you want to open. Then select either:

A) "Open with Archive Manager" (the default action, and allows you to extract the files wherever you want them -- drag and drop), or

B) toward the bottom of the menu, select "Extract Here."

If you select Extract Here, the contents will appear in a new folder, but in the same folder where the .zip file is located.

Hope that helps.

0

First open terminal and install the unzip by using:

sudo apt-get install unzip

now navigate to the folder where the file is and open a terminal there by doing this in the terminal:

  • cd /home/user_name/path_to_file/ orcd ~/path_to_file
  • run ls to make sure your in the right folder and if you are your will see the file listed

Then type the following in the terminal

unzip name_of_file.zip

See man unzip for more information

George Udosen
  • 36,677
Aditya Jangid
  • 199
  • 1
  • 6