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.
Failed to Mount Volume
-
- Posts: 31
- Joined: 8. Sep 2016, 06:29
- Location: Pacific Northwest U.S.
Failed to Mount Volume
Once you go Salix, you don't go back
Re: Failed to Mount Volume
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:
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;
}
});