Here is my fstab. As you can see I have commented out the entries for the optical drives and the floppy so
nautilus can mount media inserted into these drives. I have used this setup in my fstab for several years now without problems. The Upgrade to Gnome-2.22 is when things went wrong. I waited to upgrade till Gnome-2.22 went stable and I followed the upgrade guide.
Code: Select all
# <fs> <mountpoint> <type> <opts> <dump/pass>
# NOTE: If your BOOT partition is ReiserFS, add the notail option to opts.
/dev/sda1 /boot ext2 noauto,noatime 1 2
/dev/sda3 / ext3 noatime 0 1
/dev/sda2 none swap sw 0 0
#/dev/hda /mnt/cdrom auto noauto,ro,user 0 0
#/dev/hdb /mnt/cdrw auto noauto,rw,user 0 0
#/dev/fd0 /mnt/floppy auto noauto,user 0 0
# NOTE: The next line is critical for boot!
none /proc proc defaults 0 0
# glibc 2.2 and above expects tmpfs to be mounted at /dev/shm for
# POSIX shared memory (shm_open, shm_unlink).
# (tmpfs is a dynamically expandable/shrinkable ramdisk, and will
# use almost no memory if not populated with files)
none /dev/shm tmpfs nodev,nosuid,noexec 0 0
If I don't comment out those lines
nautilus refuses to see or mount any media inserted in any of these drives. I get the error
"Unable to mount location. Can't mount file" or
"there is no media in the drive."
The gnome-2.22 upgrade guide says this
Automounting has seen a few significant changes for Gnome 2.22. It is now handled by Nautilus instead of gnome-base/gnome-volume-manager. However, gnome-volume-manager is still used to detect new hardware such as cameras.
Because of this change, there is now an automount use flag on gnome-volume-manager for users who wish to keep the old behavior. Users who previously started gnome-volume-manager with non-Gnome desktops are strongly advised to enable this use flag. Gnome users on the other hand are strongly advised to make sure that this use flag is not turned on, as it will cause problems with Nautilus.
Its seems that this is a new feature in gnome and it isn't working so well at the moment.

TIA