| ページ一覧 | ブログ | twitter |  書式 | 書式(表) |

MyMemoWiki

差分

ナビゲーションに移動 検索に移動
997 バイト追加 、 2021年1月5日 (火) 03:56
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

案内メニュー