FS#8489 - Gnome does not automount USB devices
Attached to Project:
Arch Linux
Opened by Robert Hollencamp (rhollencamp) - Friday, 02 November 2007, 20:13 GMT
Last edited by Greg (dolby) - Monday, 12 May 2008, 18:44 GMT
Opened by Robert Hollencamp (rhollencamp) - Friday, 02 November 2007, 20:13 GMT
Last edited by Greg (dolby) - Monday, 12 May 2008, 18:44 GMT
|
Details
Description:
I did a fresh install of Arch on two seperate systems and installed gnome on both. Neither system will automount usb devices when they are inserted. CDs/DVDs will automount, and I formatted a partition using gparted and that automounted as soon as it was partitioned, but nothing happens when I insert a usb drive. I can mount the devices manually, using mount /dev/sdb1 /mnt/usb. Everything in dmesg looks normal, there just is no automounting. Additional info: One system fully updated to core, one fully updated to testing. Both have same problem. Steps to reproduce: Install Arch Linux Install Xorg/Gnome Start Gnome Insert USB drive and watch nothing happen |
This task depends upon
I suspect this problem is kernel related, because I have this problem since I upgraded to kernel 2.6.23. Downgrading kernel to version 2.6.22 solved the problem for me.
Do the following in a root terminal:
nano /etc/hal/fdi/policy/90-user-methods.fdi
insert:
<?xml version="1.0" encoding="UTF-8"?>
<deviceinfo version="0.2">
<device>
<match key="volume.fsusage" string="filesystem">
<merge key="volume.ignore" type="bool">true</merge>
<match key="@block.storage_device:storage.removable" bool="true">
<merge key="volume.ignore" type="bool">false</merge>
<merge key="storage.policy.should_mount" type="bool">true</merge>
</match>
</match>
</device>
</deviceinfo>
reboot and external USB-Disk will be mounted automaticly after insert...
not sure if this is a gnome issue or a hal issue since other desktops seem unaffected according to other posters in the thread
Latest Core/Extra packages, hal & dbus running, member of storage group (not member of hal or dbus), no fam running.
http://bbs.archlinux.org/viewtopic.php?pid=297389#p297389
So I have created a new patched version of the package source that can be downloaded from here:
http://viewvc.faunos.com/viewvc.cgi/extra/hal/trunk.tar.gz?view=tar
A new Gnome version is out since then : 2.22.
Is this problem still valid ?
Also this new Gnome version uses GIO/GVFS and nautilus is responsible for mounting peripheral instead of gnome-volume-manager, so disabling gnome-volume-manger is something you should try with Gnome 2.22.
See my comments in #10328
Is this fixed or is there anyone for whom it does not work with the latest gnome?