Поиск по этому блогу

пятница, 15 января 2010 г.

В свежеустановленном Xfce4 «из коробки» не происходило монтирование сменных носителей (флешек, CD- и DVD-дисков), не работали опции управления электропитанием.
Немного «погуглив», нашёл решение этих проблем.

Привёл файл /etc/PolicyKit/PolicyKit.conf к виду:

 <?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">
<define_admin_auth group="wheel"/>
<match user="root">
        <return result="yes"/>
</match>
<match action="org.freedesktop.hal.storage.mount-removable">
        <return result="yes"/>
</match>
<match action="org.freedesktop.hal.storage.mount-fixed">
        <return result="yes"/>
</match>
<match action="org.freedesktop.hal.storage.eject">
        <return result="yes"/>
</match>
<match action="org.freedesktop.hal.power-management.shutdown">
        <return result="yes"/>
</match>
<match action="org.freedesktop.hal.power-management.reboot">
        <return result="yes"/>
</match>
<match action="org.freedesktop.hal.power-management.set-powersave">
        <return result="yes"/>
</match>
<match action="org.freedesktop.hal.power-management.suspend">
        <return result="yes"/>
</match>
<match action="org.freedesktop.hal.power-management.hibernate">
        <return result="yes"/>
</match>
<match action="org.freedesktop.hal.power-management.cpufreq">
        <return result="yes"/>
</match>
<match action="org.freedesktop.hal.power-management.lcd-panel">
        <return result="yes"/>
</match>

</config>

 Всё заработало, если бы не одно «но»: файлы, написанные кириллицей, на смонтированных носителях отображались «кракозябрами».
Вставка опции utf8=true в секцию [vfat] файла /etc/xdg/xfce4/mount.rc решило проблему.

5 комментариев:

krigstask комментирует...

Надо было ещё diff добавить, чтоб ясно стало, что именно менять (-:Е

Lupo Alberto комментирует...

Изменения выделил «жирным» шрифтом.

Анонимный комментирует...

спасибо за кодировку в xfce

Анонимный комментирует...

спасибо, выложи также содержимое mount.rc, например у меня (xfce 4.4.3) его нет

Lupo Alberto комментирует...

#
# ABOUT
# =====
# This file contains the mount option configuration when exo-mount is used with the HAL
# back end (which is highly recommended). If mounting using exo is somehow not working
# for you, you can copy this file to your $XDG_CONFIG_HOME/xfce4 directory and modify it.
#
# The options for each filesystem are not used when they are not in the list of
# valid mount options provided by HAL. You can find those values using lshal and
# search for the volume.mount.valid_options property.
#
#
# EXAMPLE
# =======
# For example your usb device contains the vfat file system and lshal shows the
# following valid mount options for the device:
#
# volume.mount.valid_options = {'ro', 'sync', 'dirsync', 'noatime', 'nodiratime',
# 'noexec', 'quiet', 'remount', 'exec', 'uid=',
# 'gid=', 'umask=', 'utf8'} (string list)
#
# All the values that end with a = character are options that contain a value,
# the other options are booleans that can be enabled by for example putting
# utf8=true in the group.
#
#
# SUBSTITUTIONS
# =============
# Some options can be substituted by exo-mount when you set the value to :
# uid : The real user ID
# gid : The real group ID
# iocharset: To the EXO_MOUNT_IOCHARSET or LC_CTYPE environment variable.
#

[vfat]
uid=
shortname=winnt
# FreeBSD specific option
longnames=true
utf8=true

[iso9660]
uid=

[udf]
uid=
iocharset=

[ntfs]
uid=

[ntfs-3g]
uid=
# Make sure the device does not get 0777 permissions
umask=0077