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

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

question:

    After using remote desktop to connect to the Ubantu system on the workstation under Windows, the following two pop-up windows often appear, which is very annoying:

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

Alt

solution:

A safer way is to create a configuration file

  1. The first step is to open a terminal and enter the following command:

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

  2. In the second step, copy and paste the following content:

[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. The third step, save and exit:

First press Ctrl + X , then press Y , and finally press Enter

Guess you like

Origin blog.csdn.net/ittongyuan/article/details/129429566