Um....
You mount your floppy with the command: 'mount /dev/fd0' Or something like it. The information on that disk is now at the mount point defined in /etc/fstab, which is /mnt/floppy. So, all the files you alter, add, remove from that directory will be written to your floppy. To unmount, do 'umount /dev/fd0' and now /mnt/floppy doesn't exist and your information is on the floppy diskette.
|