Příkazy pro polkit se nachází v /usr/share/polkit-1/rules.d
Zde vytvořit textový soubor např. 49-nomountpass.rules
Do něho vložit tento text:
// Připojování disku bez hesla
polkit.addRule(function(action, subject) {
if (action.id == „org.freedesktop.udisks2.filesystem-mount-system“ &&
subject.active &&
subject.user == „zde přepište na váš login“) {
return polkit.Result.YES;
}
});
Zdroj https://forums.opensuse.org/showthread.php/484311-org-freedesktop-udisks2-filesystem-mount-system-not-working-in-openSUSE-12-3-KDE děkuji patrus.