# # Automounting the floppy or cdrom # ---------------------------------- # # # untested config -- play wth the various options # in /etc/fstab ( use kudzu if it was redhat instead of automount=10 ) /dev/fd0 /mnt/floppy auto noauto,owner,automount=10 0 0 /dev/cdrom /mnt/cdrom iso9660 noauto,ro,automount=10 0 0 in /etc/auto.master /.autofs/fd /etc/auto.fd --timeout 30 /.autofs/cd /etc/auto.cd --timeout 30 in /etc/auto.fd floppy -fstype=auto,suid,rw :/dev/fd0 in /etc/auto.cd cd -fstype=iso9660,ro :/dev/cdrom # cd -fstype=iso9660,ro,nosuid,nodev :/dev/cdrom # # End of file