准备步骤:
- 烧录系统
- 选择语言选择地区
- 准备代码
更新系统
sudo apt update
注意由于已经是桌面版系统,无需安装xubuntu桌面,建议直接安装desktop版本,server版本则建议安装Ubuntu-desktop
安装lightdm
sudo apt install lightdm
lightdm
注意在安装选择框选择
安装xrdp和tightvncserver
sudo apt install xrdp
为了避免出错这里分开写
sudo apt install tightvncserver
将xrdp服务设置为开机自启
sudo systemctl enable xrdp
重要!!配置文件
这里很容易出错和遗漏,最好一步步来,不要遗漏文章来源:https://www.toymoban.com/news/detail-525355.html
echo gnome-session > ~/.xsession
sudo nano /etc/xrdp/startwm.sh
在fi下面加入以下代码
gnome-session
. /etc/X11/Xsession
#!/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
重启xrdp文章来源地址https://www.toymoban.com/news/detail-525355.html
sudo systemctl restart xrdp
ps
防火墙是默认开启的,检查防火墙确认打开
sudo ufw status
如果不行可以试试
sudo ufw allow 3389/tcp
到了这里,关于Ubuntu Desktop 22.04.2配置xrdp连接的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!