環境
Ubuntu 18.04.3
XRDP設定
パッケージインストール
xrdp関連のパッケージをインストールする。
$ sudo apt -y install xserver-xorg-core xorgxrdp xrdp
$ sudo apt -y install xserver-xorg-input-all
サーバの設定
$ sudo vi /etc/xrdp/xrdp.ini
- new_cursors=true
+ new_cursors=false
$ sudo vi /etc/polkit-1/localauthority/50-local.d/xrdp-color-manager.pkla
[Netowrkmanager]
Identity=unix-user:*
Action=org.freedesktop.color-manager.create-device
ResultAny=no
ResultInactive=no
ResultActive=yes
$ sudo rm -f /etc/polkit-1/localauthority.conf.d/02-allow-colord.conf
$ sudo vi /etc/polkit-1/localauthority/50-local.d/45-allow-colord.pkla
[Allow Colord all Users]
Identity=unix-user:*
Action=org.freedesktop.color-manager.create-device;org.freedesktop.color-manager.create-profile;org.freedesktop.color-manager.delete-device;org.freedesktop.color-manager.delete-profile;org.freedesktop.color-manager.modify-device;org.freedesktop.color-manager.modify-profile
ResultAny=no
ResultInactive=no
ResultActive=yes
$ sudo vi /etc/xrdp/sesman.ini
- FuseMountName=thinclient_drives
+ FuseMountName=.thinclient_drives
xrdpおよびpolkitを再起動する。
$ sudo systemctl restart xrdp
$ sudo systemctl restart polkit
ユーザー設定
ユーザーの .xsessionrc ファイルを以下のように設定する。
$ vi ~/.xsessionrc
export GNOME_SHELL_SESSION_MODE=ubuntu
export XDG_CURRENT_DESKTOP=ubuntu:GNOME
export XDG_DATA_DIRS=/usr/share/ubuntu:/usr/local/share:/usr/share:/var/lib/snapd/desktop
export XDG_CONFIG_DIRS=/etc/xdg/xdg-ubuntu:/etc/xdg
トラブル事例
ローカルでログインできない
症状
xrdpをインストール後、リモートデスクトップ接続では接続できて、キーボード・マウスは使用できる。一方、ローカルで直接ログインすると、キーボード・マウスが使用できない
原因
xserver-xorg-input-all がインストールされていない。sshでログインし、xserver-xorg-input-allをインストールする。
sudo apt -y install xserver-xorg-input-all
参考文献