Recovering data from multi-disk ZIP archives
Last year, I wrote about how I had recently been imaging and archiving my old 3.5-inch floppy disks from the late '80s to mid-'90s. Quite a number of those disks contain multi-disk ZIP archives, made by the original PKZIP.
This post is a short one about the steps I figured out to extract them using zip
and unzip
from the Info-ZIP package. (The unzip
and zip
that are installed by default on macOS.)
To extract files from multi-part ZIP archives (the ones with volume labels like PKBACK# 001
, etc), perform the following steps:
- Rename the original zip files (from the individual disk volumes) to
<name>.z01
,<name>.z02
, etc. - Run:
zip -FF <name>.z01 --out <name>.zip
- Answer
n
when it asks:Is this a single-disk archive? (y/n):
- Answer
e
(end) when it complains that itcould not find <name>.z0n
(where n is one higher than the last file number).
- Answer
- Run
unzip <name>.zip
You should now have all the files in the combined archive.
- ← Previous
Fixing stuck macOS Local Network permissions