当前位置:   article > 正文

Ubuntu Desktop 22.04.2配置xrdp连接_ubuntu xrdp

ubuntu xrdp

准备步骤:

  1. 烧录系统
  2. 选择语言选择地区
  3. 准备代码

更新系统

sudo apt update
  • 1

注意由于已经是桌面版系统,无需安装xubuntu桌面,建议直接安装desktop版本,server版本则建议安装Ubuntu-desktop

安装lightdm

sudo apt install lightdm
lightdm
注意在安装选择框选择
  • 1
  • 2
  • 3

安装xrdp和tightvncserver

sudo apt install xrdp
为了避免出错这里分开写
sudo apt install tightvncserver
  • 1
  • 2
  • 3

将xrdp服务设置为开机自启

sudo systemctl enable xrdp
  • 1

重要!!配置文件

这里很容易出错和遗漏,最好一步步来,不要遗漏

echo gnome-session > ~/.xsession
  • 1
sudo nano /etc/xrdp/startwm.sh
  • 1
在fi下面加入以下代码
gnome-session
. /etc/X11/Xsession
  • 1
  • 2
  • 3
#!/bin/sh
# xrdp X session start script (c) 2015, 2017, 2021 mirabilos
# published under The MirOS Licence

# Rely on /etc/pam.d/xrdp-sesman using pam_env to load both
# /etc/environment and /etc/default/locale to initialise the
# locale and the user environment properly.

if test -r /etc/profile; then
        . /etc/profile
fi

gnome-session
. /etc/X11/Xsession

test -x /etc/X11/Xsession && exec /etc/X11/Xsession
exec /bin/sh /etc/X11/Xsession

  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18

重启xrdp

sudo systemctl restart xrdp
  • 1

ps

防火墙是默认开启的,检查防火墙确认打开
sudo ufw status
如果不行可以试试
sudo ufw allow 3389/tcp
  • 1
  • 2
  • 3
  • 4
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/小蓝xlanll/article/detail/191791
推荐阅读
相关标签
  

闽ICP备14008679号