42
20
How do I unzip a split zip file?
In Terminal, I wrote: unzip filename.zip
and it did not unzip this file.
Terminal wrote:
$ unzip filename.zip
Archive: filename.zip
warning [filename.zip]: zipfile claims to be last disk of a multi-part archive;
attempting to process anyway, assuming all parts have been concatenated
together in order. Expect "errors" and warnings...true multi-part support
doesn't exist yet (coming soon).
file #1: bad zipfile offset (local header sig): 4
file #2: bad zipfile offset (local header sig): 98
file #3: bad zipfile offset (local header sig): 471
file #4: bad zipfile offset (local header sig): 6635222
Double clicking of this file creating filename.zip.cpgz
What can I do?
1So, are there any other parts of this file or do you only have this one part? If you only have one, are you trying to get the contents of this part only? – slhck – 2011-12-07T17:12:06.553
Have you tried other uncompression tools? I'd run uncompress and gunzip on the file and see if was processed with one of those. – Wilersh – 2011-12-07T20:25:29.810
It's no problem to unzip multiple archive using unarchiver.app but I'm looking for the terminal command to do this without of using any apps. – Kris – 2011-12-08T14:16:11.870
First I'd take it over to a Windows box and try 7Zip on it. If that doesn't work I'd try to find the rest of the zip file pieces and concatenate them together. – Daniel R Hicks – 2013-07-20T01:00:40.820