【解决“Authentication is required to create a color profile/managed device“】

解决Ubantu系统"Authentication is required to create a color profile/managed device"

问题:

    在Windows下使用远程桌面连接到工作站的Ubantu系统后,经常会出现以下两个弹窗,十分烦人:

  • Authentication is required to create a color profile
  • Authentication is required to create a color managed device

Alt

解决方案:

比较安全的办法就是创建一个配置文件

  1. 第一步,随便打开一个终端,输入以下命令:

sudo nano /etc/polkit-1/localauthority/50-local.d/45-allow-colord.pkla

  2. 第二步,把以下内容复制粘贴过去:

[Allow Colord all Users]
Identity=unix-user:*
Action=org.freedesktop.color-manager.create-device;org.freedesktop.color-manager.create-profile;org.freedesktop.color-manager.delete-device;org.freedesktop.color-manager.delete-profile;org.freedesktop.color-manager.modify-device;org.freedesktop.color-manager.modify-profile
ResultAny=no
ResultInactive=no
ResultActive=yes

  3. 第三步,保存并退出:

先按 Ctrl + X , 然后按 Y, 最后 回车

猜你喜欢

转载自blog.csdn.net/ittongyuan/article/details/129429566