Last active
December 20, 2015 22:49
-
-
Save bmatherly/6207696 to your computer and use it in GitHub Desktop.
Instructions for copying player piano floppy disks.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# The player piano takes 720k floppies. "Convert" 1.44MB floppies by putting a piece of tape over the lower right hole. | |
# Insert the original disk | |
# Make an image of the original disk: | |
ddrescue -b 512 -c 9 -d -r 20 /dev/fd0 classical1.img | |
# Insert the blank disk | |
# Format as 720k (Double Density) | |
superformat /dev/fd0 dd | |
# Copy the image to the new floppy | |
dd if=classical1.img of=/dev/fd0 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment