Have you ever seen these file ?
- zipfiles.zip
- zipfiles.z01
- zipfiles.z02
- zipfiles.z03
- ……
- zipfiles.z10
These are the multi-part of zipped files, which mean one big file are to big to make archive so it should split into several files. These files were created by winzip. Probably for many people (included me) it such a weird file, and they don’t know how to extract the file archives.
After my research in whole google how to extract it, here i want to share to you how to extract it.
For window platform
There are so many software has support for these extension such as winzip, winrar, 7-zip, and many other, put those file in one folder, and then just click with your supported software above, and whala…. the file extracted.
For linux platform
The problem for newbie user in linux is they don’t now how to combine the command within. I got the problem too with these platform, but that’s why i like most with this platform, it challenged me to know. Alright then here the command for solve this problem.hendra-k@server $ cat zipfiles.* > zipfiles-full.zip
hendra-k@server $ zip -F zipfiles-full.zip
hendra-k@server $ unzip zipfiles-full.ziphere the description for these command above :
hendra-k@server $ cat zipfiles.* > zipfiles-full.zip
= merging those file into one full zipped filehendra-k@server $ zip -F zipfiles-full.zip
= Fixing the archive of the overall zipped fileshendra-k@server $ unzip zipfiles-full.zip
= Extract the full zipped fil
Hope this tutorial is usefull for you
As a newbie :d this was very helpful
Thanks,
Brian
@Brian
hi brian
thanks for your visiting to my blog, hope its helpful
Great little tutorial, but shouldn’t it be >> not > ?
Thanks that was great help!
dont fucking get it
Why bother linux anyways only gives you crap, i’m only trying to get a XP Pro image and it can’t even fucking unrar a file or deal with a multi-zip file8-|
For that there is a many programs,but me like this tool-repairing zip files,exactly it could helped me,very popular freeware tool, it permits to save a lot of free space, when storing data,supports all Windows operating systems, starting from Windows 98, i.e. Windows Me, Windows NT 4.0, Windows 2000, Windows XP, Windows XP SP2, Windows 2003 and Windows Vista,can see such messages, like Cannot open file: it does not appear to be a valid archive, CRC error or some other failures,will see a list of files, that can be recovered, registered customers can save the files to HDD and finish with recovery process.
THANK YOU!! linux commands useful for os x.
@jordi: interesting, I have just unzipped multi-part zip file and unrar-ed the file that was in there (in Linux of course). So I guess the problem is in you, not in Linux. 🙂
(don’t ask me why someone sent me such files – windows users do all sorts of weird things)
But yes, unzip should support the multi-part unzipping without workarounds. We are all waiting for the next major version.
Good job, I was looking for that. Couldn’t find it less faster, 4th link, first page of Googling.
There are 4 parts of zip file (wmv). But I have only part 1 & 2, And I cannot find part 3 & 4. Thus, can I extract only part 1 &2, then see it by movie player?
Please help to advise!
Thanks in advance.
Like
Short and clean tutorial! Thank you!
PS – I was trying to merge IZarc multi-part archive on Linux. Your site was very helpful.
sudo aptitude -y install p7zip-full
🙂
Or, if you’re not on Ubuntu, install the “p7zip-full” package of your distribution.
Thank you so much!
Can I extract **.zip without z02,z03,…..
Thanks
riz
yes you can..
Thank you for this tutorial! The man page told me what needed to be done, but not really how to do it.
The only change I’d see is that when I ran the command:
zip -F
I recieved the following:
zip: reading
zip: warning: would be truncated.
Retry with option -qF to truncate, with -FF to attempt full recovery
I used the -FF, but I don’t know if it will work or should be recommended…It’s still reading the file (4 hours later).
O.K.
Thanks a lot 🙂
It work even on multipart archives with password, but you have to use -P modifier for unzip command
How do you do this in windows with winzip. I did what was posted, but there was no whala, no unzipped, combined 4 files. files are .z01-.z04
Thanks very much for the hint.
It was the
-F</code bit that I was missing.
Much appreciated
Thanks very much for the hint.
It was the
-F
bit that I was missing.Much appreciated
I think it may be very slow with large files, which may also imply in a problem of space, depending on the size. There must be some non-gui or even gui way to do it in a more straightforward way. The stupid ark first tries to copy any archive it’s going to uncompress to the depths of some obscure ~/.kde/ subfolder, instead of just using the files right where they are.
zip -F for me resulted in “Missing or empty zip file”, even though the file has 5.1 GB.
I’m not complaining to the post’s author, this is just an aimless rant/sort of advice.
Thanks hendra for this tutorial! It saves my lots of time.
Worked for me in Ubuntu 10.4 – thanks!
Thanks man, you saved my life 😉 It’s very usefull for newbies in linux like me.
hey thanks a lot, the Linux part works like a charm
What the hell is a “whala”?
You must mean “voila”, French for “look”.
thanks, I’m still trying to figure out the best way to do this on ubuntu
Thank you… it really works!!
Thankyou, this was exactly what I was looking for, you would assume the archivers would detect this on linux!
Hi,
I tried unpacking them with 7zip. But it just says “Can’t open file as archive”. But when I doubleclick it shows that there is a file inside, but I just can’t extract it. Any idea how this can be solved?
Does it matter whether I start with the first file or with the last to unzip?
Thanks.
The optionhendra-k@server $ zip -F zipfiles-full.zip is not working for me
It ask’s me to specify an output.
Which I then dohendra-k@server $ zip -F zipfiles-full.zip –out zipfile-full.zipBut it doesn’t work.
What can I do.
Thank you very much. It works perfect.
Unfortunately this is wrong about 7zip
I really wish people would test things out before saying it would work.
this isn’t the only place that guessed about 7zip though
The part about concatenating the files might work, but you have to be careful to get them in the right order otherwise it won’t work and depending on the OS the * might list out the files in a different order which means then that that answer won’t work either
Thanks, thanks and thanks again! This thing helped me alot!
I know this is quite old, but google is THE problem solver these days.
I downloaded 4 files. 3 were 100mb each (file.z01, file.z02, file.z03) and a 47mb one, “file.zip”. Obviously the last part of a th full archive is the smallest one. Here’s what I did…
$ mv file.zip file.z04
$ cat file.* > file.zip
$ zip -FF file.zip --out final.zip
$ unzip final.zip
Nowadays you don’t need to merge the files on linux. “zip -F” automatically recognises that the input file is a multi-part archive.
zip -F zipfiles.zip –out OneZipArchive.zip
unzip OneZipArchive.zip
This is a solution i found while trying your solution ;) Thanks for that
Every time i need it, i found it there !
I always forgot about -FF zip command. Very useful for multipart file.
cheers !
kéké
)
cat archive.* > archive-full.zip
)
Solved my problem. Although, i had to use 7za [p7zip] to extract the combined archive.