Ubuntu 18.04で実行されているtigervncサーバーに接続しようとしています(TigerVNCビューアーWindowsクライアントを使用)。最初の認証の後、「カラープリンタを作成するには認証が必要です...」という追加の認証プロンプトが表示されます。これは、tigervncサーバーの再起動後の最初のログインでのみ発生します。とにかくこれをバイパスできますか?
このファイルを作成し、permsを644に設定し、所有者root:rootでこれを修正しました。
ファイル名:/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("{nogroup}")
)
)
{
return polkit.Result.YES;
}
});