[EMAIL PROTECTED] wrote:
>
> Ok...when I to mount them, I get a message saying "Must specify
> filesystem".......how do I do this? Thanks.
>
> Matt
Hi, Matt,
If you're trying to mount /dev/cdrom, you should specify the filesystem
type, like:
mount -t iso9660 /dev/cdrom
If you put these two lines into your /etc/fstab:
/dev/fd0 /mnt/floppy auto
sync,user,noauto,nosuid,nodev,unhide 0 0
/dev/cdrom /mnt/cdrom auto
user,noauto,nosuid,exec,nodev,ro 0 0
you should be able to 'mount /mnt/cdrom' or 'mount /mnt/floppy' without
specifying the filesystem type. Good luck,
Hidong