Convert Apple DiskCopy 4.2 images to standard disk images

From Computers Wiki
Revision as of 00:45, 21 March 2023 by Huntertur (talk | contribs) (Add Classic Mac OS category)
Jump to navigationJump to search

To convert an Apple DiskCopy 4.2 image (detectable by the file utility), you need to ignore the first 0x54 (decimal 84) bytes of the file.[1]

Cookbook

Convert one file

tail --bytes=+85 filename

Convert a directory of files

for f in *.image
do
    tail --bytes=+85 $f > "extracted/$f"
done

References