ubuntuのバージョン 18.04.3の.3というところがポイントです。このバージョンの違いで、不具合や対策が異なるようです。
不具合の原因は、xorgxrdpパッケージにあるようです。
同様の不具合について、この記事を見つけました。
https://note.spage.jp/archives/576
前回、xorgxrdpはインストールできましたが、今回、xorgxrdpをインストールしようとしたところ、エラーが発生しました。
上記の記事と同じです。
対策として、こちらの記事を見つけました。
http://c-nergy.be/blog/?p=13972
結論として、ubuntu 18.04.3では、下記のようにインストールすると良いようです。
$ sudo apt install xrdp
$ sudo apt install xorgxrdp-hwe-18.04
前回、なぜ、xorgxrdpがインストールできたのか分かりませんが、どうやら、これが、操作不能になった原因だったようです。
これについては、将来のubuntuのバージョンで解決するらしいです。
「カラープロファイルを作成するには認証が必要です」 対策
リモートデスクトップで接続したとき、このダイアログが表示されます。
これは、結構前から報告があるようですが、改善されていないようです。
対策は、こちらから
http://aimingoff.way-nifty.com/blog/2017/06/xrdp-4be6.html
https://c-nergy.be/blog/?p=12073
/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("{users}")) {
return polkit.Result.YES;
}
});
ようやく、リモートデスクトップが動きました。
0 件のコメント:
コメントを投稿