Introduction

割とネットで転がっている話題ですが。
肝は18.04.3であること。

What is a problem?

どうも、18.04.2xorgxrdpというパッケージがxrdpのインストールで入らなくなった模様。
なので、私がお世話になっていた下記のページの方法では少し手順が不足するようになりました。

なので、最後に追加インストールを加えた下記のシェルで対応可能なはず。

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
#!/bin/bash

if [ $# -ne 1 ]; then
echo "Pass password of running user to execute command as root" 1>&2
exit 1
fi

echo $1 | sudo -S apt install -y xrdp
echo $1 | sudo sed -e 's/^new_cursors=true/new_cursors=false/g' \
-i /etc/xrdp/xrdp.ini
echo $1 | sudo systemctl restart xrdp

D=/usr/share/ubuntu:/usr/local/share:/usr/share:/var/lib/snapd/desktop
cat <<EOF > ~/.xsessionrc
export GNOME_SHELL_SESSION_MODE=ubuntu
export XDG_CURRENT_DESKTOP=ubuntu:GNOME
export XDG_DATA_DIRS=${D}
export XDG_CONFIG_DIRS=/etc/xdg/xdg-ubuntu:/etc/xdg
EOF
cat <<EOF | \
sudo tee /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
EOF
echo $1 | sudo systemctl restart polkit

echo $1 | sudo apt install xorgxrdp
echo $1 | sudo systemctl restart xrdp
echo $1 | sudo systemctl restart polkit