User Tools

Site Tools


howto:mint-update-manager

Mint Update Manager

To permanently allow a user to install updates via update manager in Linux Mint, a policy needs to be added to PolicyKit (polkit):

This is if the currently logged in user. Replace $USER if necessary.

sudo tee /etc/polkit-1/rules.d/99-mintupdate.rules > /dev/null << EOF
polkit.addRule(function(action, subject) {
    if (action.id == "org.aptkit.install-or-remove-packages" &&
        subject.user == "$USER") {
        return polkit.Result.YES;
    }
});
EOF

then either reboot or restart the polkit service:

sudo systemctl restart polkit
howto/mint-update-manager.txt · Last modified: by Wuff