You need to configure your /etc/fstab file (see man fstab), here's a copy ofQuote:>Can somebody please tell me how a user other than root can mount floppy
>disks? It kinda sucks having to switch to root everytime I want to mount
>anything. Also, more than one person uses my Linux machine and I don't
>want to have to give them the root password so they can use the floppy
>and CD-ROM drives.
>Thanks ...
>Arcadio
mine:
/dev/hdb2 swap swap defaults 1 1
/dev/hdb3 / ext2 defaults 1 1
/dev/hda1 /dosc msdos defaults 1 1
/dev/hdb1 /dosd msdos defaults 1 1
/dev/hdc /cdrom iso9660 defaults,user,ro,noauto 0 0
/dev/fd0 /dosa msdos user,noauto 0 0
/dev/fd0 /fd0 ext2 user,noauto 0 0
none /proc proc defaults 1 1
Using this a user can mount a cdrom by mount /cdrom a dos floppy by
mount /dosa and an ext2 floppy by mount /fd0 (no need for to specify
device or file type -- )