修改手动挂载ntfs不需要密码
2020年11月7日下午12:37
文件管理器挂载非系统分区时需要密码验证,非常麻烦。
方案
sudo nano /usr/share/polkit-1/actions/org.freedesktop.UDisks2.policy
修改filesystem-mount-system
的allow_active
值为yes即可免密。
<action id="org.freedesktop.udisks2.filesystem-mount-system">
...
<defaults>
<allow_any>auth_admin</allow_any>
<allow_inactive>auth_admin</allow_inactive>
<allow_active>yes</allow_active>
</defaults>
</action>