0
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

Ubuntu 18.04でリモートデスクトップ

Last updated at Posted at 2021-08-29

環境

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

参考文献

0
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?