hpr3947 :: Archiving Floppy Disks
This show describes how I go about archiving old floppy disks.
Hosted by Steve Saner on Tuesday, 2023-09-19 is flagged as Clean and is released under a CC-BY-SA license.
floppy, disk, archive, linux, commands.
1.
The show is available on the Internet Archive at: https://archive.org/details/hpr3947
Listen in ogg,
spx,
or mp3 format. Play now:
Duration: 00:16:49
general.
Archiving Floppy Disks
Summary
This show describes how I go about archiving old floppy disks. These disks date back to the early 90s when floppy disks were a common way of installing software on personal computers. They were also used as a portable storage mechanism for data files.
Equipment That I'm Using
- IBM ThinkCentre desktop computer with a 3.5in floppy disk drive
- Installed the 32-bit version of Slackware 14.2
Making an image of an entire floppy disk
dd if=/dev/fd0 of=filename.dsk
Making a floppy disk from a disk image
dd if=filename.dsk of=/dev/fd0
Copy files from a floppy disk
mount -t msdos /dev/fd0 /mnt/floppy
cd /mnt/floppy
cp filename /some/destination/path/filename
cd
umount /mnt/floppy