Arch Linux 無法掛載內接式硬碟 - Linux

Table of Contents

arch linux 64bit
使用i3WM
目前遇到就是內接硬碟都無法透過FileManager掛載
但是外接隨身碟或硬碟可以
點擊會出現Not Authorized to perform operation
http://i.imgur.com/8wRHslo.png

我是算是Windows Linux雙系統
總共三顆硬碟
Windows分區在sda
Linux在sdc
sdb只是資料碟

是說不是只有arch linux會這樣
之前有用過Mint Liunx的Live CD也是一樣

可以獨到分區,但是無法掛載
可使用指令

之前想安裝Ubuntu時更扯,明明有分區卻讀不到分割表
http://puu.sh/9ucL1/7c3d24e3e5.JPG

發生什麼事了?


問題已解決


是polkit的問題

我在/etc/polkit-1/rules.d只有找到50-default.rules

之後新增10-enable-mount.rules

polkit.addRule(function(action, subject) {
if (action.id == "org.freedesktop.udisks2.filesystem-mount-system" &&
subject.isInGroup("storage")) {
return polkit.Result.YES;
}
});

就可以用了

--

All Comments

Eden avatarEden2014-08-20
第一張....就權限不足呀
Odelette avatarOdelette2014-08-21
policy kit沒設定好