Convert Apple DiskCopy 4.2 images to standard disk images: Difference between revisions

From Computers Wiki
Jump to navigationJump to search
(Create page)
 
(Add Classic Mac OS category)
Line 22: Line 22:


[[Category:Guides]]
[[Category:Guides]]
[[Category:Classic Mac OS]]

Revision as of 00:45, 21 March 2023

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