Hello!
I can't mount my CD-ROM and my DOS partition as a normal user!
I have edited my /etc/fstab file, but still nothing! This is how I configured DOS partition and CDROM:
/dev/hda1 /mnt/hda1 vfat auto,user,exec,rw 1 0
/dev/cdrom /mnt/cdrom iso9660 auto,user,ro 0 0
I set hda1 to auto, so it would automaticly mount when I boot, I set user option, so I can mount it as a normal user, exec so I can execute apps and rw so I can read and write files to it!

Its mounted when I boot, but when I try to access it as a normal user I get:
-sh: cd: /mnt/hda1: Permission denied

When I try to umount it as a normal user I get this:
umount: only root can unmount /dev/hda1 from /mnt/hda1
When I do:
chown User /mnt/hda1 -R
I get this for each file on the hda1:
chown: changing ownership of `/mnt/hda1/': Operation not permitted
chown: changing ownership of `/mnt/hda1/tc.exe': Operation not permitted

What is wrong with it? How can I access and mount/umount it as a regular user?

The same problem is for CD-ROM, only the difference is that I can access files as a regular user, but still can't mount/umount it! What is the problem!? Thank you!