I have not seen a zip extractor for Ubuntu on the version I installed.
I like to root phones a lot of the time I have to zip and unzip files does Ubuntu come with a zip exacter for free?
I have not seen a zip extractor for Ubuntu on the version I installed.
I like to root phones a lot of the time I have to zip and unzip files does Ubuntu come with a zip exacter for free?
The standard Ubuntu (Unity desktop) comes with an application called file-roller
or Archive Manager.
You can open zip files simply by double-clicking on them in your Files explorer.
zip
/ unzip
isn't (often) installed by default on Ubuntu... and it's such a common utility, used by so many shell scripts, you're going to need it eventually. (I'm always surprised when it's not there on each new Ubuntu system that I set up.)
There's a lot of little, common utils that are always missing on any new installation -- so, one useful feature of ubuntu is that when you try to run it, at least ubuntu will suggest what you need to install:
$ unzip foo
The program 'unzip' is currently not installed. To run 'unzip' please ask your administrator to install the package 'unzip'
$ zip foo
The program 'zip' is currently not installed. To run 'zip' please ask your administrator to install the package 'zip'
Also, to search for packages if you know the name (you can use a regexp or not; e.g, just search for unzip
as a substring, or ends with unzip$
or exactly matches ^unzip$
:
$ apt-cache search 'unzip$|zip$'
gzip - GNU compression utilities
unzip - De-archiver for .zip files
zip - Archiver for .zip files
...
lunzip - data compressor based on the LZMA algorithm (decompressor)
lzip - lossless data compressor based on the LZMA algorithm
...
p7zip - 7z file archiver with high compression ratio
plzip - parallel, lossless data compressor based on the LZMA algorithm
rzip - compression program for large files
... (etc)
In short, the tl;dr:
$ sudo apt-get install zip unzip
'unzip$|zip$'
is redundant, but it's an example that full regexp is supported & people don't have to pipe thru egrep
)
– michael
Nov 06 '17 at 23:19
There is a default .zip extractor for ubuntu. Its name is "archive manager." To zip the files (the appropriate word is to compress) just right click on the file/folder and select compress. To unzip the zipped (compressed) file right click on it and select Extract here.
Depending on the Ubuntu flavor you use, it does come with a program/GUI to extract compressed files.
However if you need support for zip and other popular containers, install p7zip so your uncompress program work:
sudo apt-get install p7zip-full
zip
/unzip
isn't installed by default on 16.04, either. – michael Nov 06 '17 at 22:14