Floppy Disks - How to mount a floppy disk on a Linux machine
Put the floppy disk in the machine's floppy drive.
- Open a terminal and type: mount /mnt/floppy.
To see what is on the floppy type:
- cd /mnt/floppy
- ls /mnt/floppy
To copy to the floppy, use the cp command.
- cp (give the path of the file location) /mnt/floppy
When you are done with the floppy, you need to change to a different directory and then umount the floppy.
- cd /etc
- umount /mnt/floppy
Suggestion: use the man pages to learn more about the mount command. At a terminal prompt type> man mount