ubuntu 16.10 で xdrp 接続時に”カラーマネジメントされたデバイスを作成するには認証が必要” としつこく認証を求めてくる

以下のコマンドでファイルを作る

$ sudo vi /etc/polkit-1/localauthority.conf.d/02-allow-colord.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("{group}")) {
      return polkit.Result.YES;
   }
});

で、解決した

コメントを残す