Failed to Mount Volume

You have a problem with Salix? Post here and we'll do what we can to help.
Post Reply
happydog500
Posts: 31
Joined: 8. Sep 2016, 06:29
Location: Pacific Northwest U.S.

Failed to Mount Volume

Post 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.
Once you go Salix, you don't go back
User avatar
mimosa
Salix Warrior
Posts: 3311
Joined: 25. May 2010, 17:02
Contact:

Re: Failed to Mount Volume

Post 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;
    }
});
Post Reply