Bueno, hay un problema con muchas distribuciones, en mi caso Arch Linux. El problema es que Hal no es capaz de Auto montar discos duros externos, algunos pendrives, etc.
Al final encontré mi solución editando el archivo:
/etc/PolicyKit/PolicyKit.conf
Aquí pongo el archivo inicial:
<?xml version="1.0" encoding="UTF-8"?> <!-- -*- XML -*- --><!DOCTYPE pkconfig PUBLIC "-//freedesktop//DTD PolicyKit Configuration 1.0//EN"
"http://hal.freedesktop.org/releases/PolicyKit/1.0/config.dtd"><!-- See the manual page PolicyKit.conf(5) for file format -->
<config version="0.1">
</config>
y así debe quedar el final:
<?xml version="1.0" encoding="UTF-8"?> <!-- -*- XML -*- --><!DOCTYPE pkconfig PUBLIC “-//freedesktop//DTD PolicyKit Configuration 1.0//EN”
“http://hal.freedesktop.org/releases/PolicyKit/1.0/config.dtd”><!– See the manual page PolicyKit.conf(5) for file format –>
<config version=”0.1″>
<match action=”org.freedesktop.hal.storage.*”>
<match user=”fiber”>
<return result=”yes” />
</match>
</match>
<match action=”hal-storage-mount-fixed-extra-options”>
<match user=”fiber”>
<return result=”yes” />
</match>
</match>
<match action=”hal-storage-mount-removable-extra-options”>
<match user=”fiber”>
<return result=”yes” />
</match>
</match></config>





Gracias! Me vino muy bien esta entrada. Pensaba que era un bug de hal…
Un saludo
Por: iyanmv el 9 Octubre 2009
a las 14:00