sudo systemctl restart polkit
</pre>
=====xrdpでリモートデスクトップしたときの「カラープロファイルを作成するには認証が必要です」を消す=====
*https://tarufu.info/ubuntu_xrdp_color_profile/
<pre>
$ sudo vi /etc/polkit-1/localauthority.conf.d/02-allow-colord.conf
</pre>
*subject.isInGroup(“**”))の**にはxRDP からログインするユーザに割り当てているグループから適当なものを設定するようです。
<pre>
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("**")) {
return polkit.Result.YES;
}
});
<pre>
====.bash_profileを使用する====
*.bash_profileは読み込まれない。.profile は読み込まれる。
====テキストモードで起動する====
*http://www.nishimiyahara.net/2014/03/19/080944