一、修复 Authentication is required
1.创建一个conf文件
sudo nano /etc/polkit-1/localauthority.conf.d/02-allow-colord.conf
2.将以下代码粘贴在conf文件中
代码如下(示例):
polkit.addRule(function(action, subject) {
if ((action.id == "org.freedesktop.color-manager.create-device" ||
action.id == "org.freedesktop.color-manager.create-profile" ||
action.id == "org.freedesktop.color-manager.delete-device" ||
action.id == "org.freedesktop.color-manager.delete-profile" ||
action.id == "org.freedesktop.color-manager.modify-device" ||
action.id == "org.freedesktop.color-manager.modify-profile") &&
subject.isInGroup("{users}")) {
return polkit.Result.YES;
}
});
3. 保存退出conf文件
按 :CTRL + X
按:Y
按:ENTER
重启电脑