How to extract multi-part zip files
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
Extend This Post Reach
If you enjoyed this post, please consider to leave a comment or subscribe to the feed and get future articles delivered to your feed reader.
Comments
[...] é uma dica rápida que achei no hendra-k.net , que mostra como descompactar ou extrair um zip de múltiplos volumes, ou seja, aqueles pacotes [...]
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 file![]()

As a newbie
this was very helpful
Thanks,
Brian