Is it possible to use GZip to create a .zip file? I've been Googling and can't find anything that leads me to believe this is possible
Asked
Active
Viewed 5.2k times
3 Answers
16
You probably want to use zip
and not gzip
. This should do it:
zip -r newzip.zip /path/to/zip/stuff

MDMarra
- 100,734
- 32
- 197
- 329
7
This is not possible. gzip and (pk)zip use different compression formats, and more significantly, zip also packages multiple files, directories, together in one archive.

Jeff Warnica
- 474
- 2
- 8
-
4They (currently) use the same compression format (deflate), they just package things differently. – Ignacio Vazquez-Abrams Sep 27 '11 at 16:41
5
The original zip format is the same as:
tar -cZf package.zip files....
(note the capital Z uses the compress lib - using the small 'z' would give a gzipped archive which pk/winzip can't understand).
i.e. no, you can't use gzip to create a pkzip file - but I'd be surprised to find a Unix machine which had gzip but not compress.

symcbean
- 21,009
- 1
- 31
- 52
-
No it isn't. Zip files are more than just a tarball passed through compress. – Ignacio Vazquez-Abrams Sep 27 '11 at 16:42
-
1Similar to != same as. Tar stores unis permissions and such that zip does not. Zip also compresses only 32kb at a time so that you can extract a single file without having to decompress everything that came before it; tar compresses the whole thing at once ( giving better compression ). Most importantly, they are different file formats that are not recognized by the other tool. – psusi Sep 27 '11 at 17:55