You are not logged in.
Thunar doesn't mount my ext3 partitions. There is no problem to mount external usb drives or ntfs partitions,
only with ext3 partitions this happens. I can mount those partitions manually though. Any help?
UPDATE:
Solved from wiki:
https://wiki.archlinux.org/index.php/Po … r_any_user
/etc/polkit-1/rules.d/49-nopasswd_global.rules
/* Allow members of the wheel group to execute any actions
* without password authentication, similar to "sudo NOPASSWD:"
*/
polkit.addRule(function(action, subject) {
if (subject.isInGroup("wheel")) {
return polkit.Result.YES;
}
});Last edited by dancer69 (2015-07-26 13:05:10)
Offline