Page 1 of 1
Failed to Mount Volume
Posted: 1. Oct 2016, 23:17
by happydog500
Installed Saiix 14.2. When I try and access the other drives, I get a "failed to mount volume" on both drives. One is Windows, the other media. I have quick start turned off on Windows. The live DVD has access, but after install, no access. What can I do?
Thank you,
Chris.
Re: Failed to Mount Volume
Posted: 2. Oct 2016, 05:18
by mimosa
As I posted on another thread, maybe it is this:
viewtopic.php?f=16&t=7052
Please note that I needed to create the config file manually, that is, a file /etc/polkit-1/rules.d/49-nopasswd_global.rules like this:
Code: Select all
/* 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;
}
});
/* Allow members of the polkitd group to execute any actions
* without password authentication, similar to "sudo NOPASSWD:"
*/
polkit.addRule(function(action, subject) {
if (subject.isInGroup("polkitd")) {
return polkit.Result.YES;
}
});