LINUX.ORG.RU
ФорумAdmin

HAL+KDE: как настроить параметры монтирования устройств?


0

0

вообще автомонтирование работает. но я не могу найти волшебного конфига, куда можно вписать, например, кодировку, в которую мне хочется замаунтить мою флешку. У меня слакварь 12.

кто знает, помогите!

★★

http://wiki.archlinux.org/index.php/HAL

Automount only removable devices

By default hal automount a normal harddiscs and create an desktop icon for it (gnome, maybe kde too). To achieve that only removable media is available on the desktop just create a file 90-user-methods.fdi in /etc/hal/fdi/policy with the following content: 
<?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>

Then we have to restart the hal-daemon with the following command: 
/etc/rc.d/hal restart

anonymous
()
Вы не можете добавлять комментарии в эту тему. Тема перемещена в архив.