LoginSignup
17
19

More than 3 years have passed since last update.

Ubuntu 20.04 の xrdp 使用中の問題と解決策

Last updated at Posted at 2020-08-03

Xubuntu 20.04 の xrdp が認証の後、真っ黒で接続できない場合

  • すでにログインsessionが起動しているのが原因。
# xfce4の場合
pkill xfce4-session

# Gnomeの場合
pkill gnome-session

また、以下も必要かも

/etc/xrdp/xrdp.ini
- max_bpp=32
+ max_bpp=24

thinclient_drives がすごく遅い問題

sudo umount thinclient_drives
/etc/xrdp/sesman.ini
- FuseMountName=thinclient_drives
+ FuseMountName=.thinclient_drives

暗号化通信の有効化

xrdp ユーザーを ssl-certグループに追加すれば解決。

/etc/xrdp/key.pem の実体の
/etc/ssl/private/ にアクセスができないため。

dockerで動作させたxrdpでクリップボードを使う

コンテナから /dev/fuse を使えるようにする。

docker-compose.yml
volumes:
  - /dev/fuse:/dev/fuse
17
19
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
17
19