2008年12月20日 星期六

解決 hal 無法自動 mount ntfs-3g 的問題

在 kde 中點選自動掛載後,會出現下面的錯誤訊息:
org.freedesktop.Hal.Device.UnknownFailure: TODO: have to rethink extra options

此時新增以下檔案即可解決問題
nano /usr/share/hal/fdi/policy/10osvendor/20-ntfs-config-write-policy.fdi
<?xml version="1.0" encoding="UTF-8"?> <!-- -*- SGML -*- -->
 
 <deviceinfo version="0.2">
     <device>
         <match key="volume.fstype" string="ntfs">
             <match key="@block.storage_device:storage.hotpluggable" bool="true">
                 <merge key="volume.fstype" type="string">ntfs-3g</merge>
                 <merge key="volume.policy.mount_filesystem" type="string">ntfs-3g</merge>
                 <append key="volume.mount.valid_options" type="strlist">locale=</append>
             </match>
         </match>
     </device>
 </deviceinfo>

參考: [SOLVED] Can't automount external drive w/ NTFS partition

沒有留言:

Related Posts Plugin for WordPress, Blogger...