|
Backup backup backup.
Words to live by. Nobody every regretted making a backup. In preparation for my talk,
I formated, labeled, and newfs'd a floppy and copied the
StarOffice talk to it. I also flicked over the write-protect tab for a bit of added
protection.
To test the floppy, I did this on another box:
# mount /dev/fd0 /mnt
# cp /mnt/oclug-sdd.tgz /home/dan/talks/
# umount /mnt
# umount: unmount of /mnt failed: Input/output error
Hmmmm, we tried many things. umount -f /mnt didn't help. After
talking to some folks in the know, we figured it out. We found this in
/var/log/messages:
Jan 2 19:28:26 xeon /kernel: fd0c: hard error writing fsbn 16 of 16-18 (ST0 40<abnrml> ST1 2<write_protect> ST2 0 cyl 0 hd 0 sec 17)
Jan 2 19:28:26 xeon /kernel: fd0c: hard error writing fsbn 56 of 56-63 (ST0 40<abnrml> ST1 2<write_protect> ST2 0 cyl 1 hd 1 sec 3)
Jan 2 19:28:26 xeon /kernel: fd0c: hard error writing fsbn 240 (ST0 40<abnrml> ST1 2<write_protect> ST2 0 cyl 6 hd 1 sec 7)
That indicates the system was trying to write to the floppy and was failing because the floppy was
write-protected. Ummm, but why was it trying to write? I hadn't written anything. I only copied
something off the disk. What's going on?
|