怎样远程登录Ubuntu桌面

2023年8月13日 | 分类: 【技术】

安装Lubuntu-desktop

sudo apt install lubuntu-desktop -y

重新启动VPS。

在Ubuntu上安装XRDP:

sudo apt-get install xrdp

配置防火墙

Xrdp 守护程序在所有的网络接口上监听端口3389。如果你在你的 Ubuntu 服务器上运行一个防火墙,你需要打开 Xrdp 端口。

想要允许从某一个指定的 IP 地址或者 IP 范围访问 Xrdp 服务器,例如192.168.33.0/24,你需要运行下面的命令:

sudo ufw allow from 192.168.33.0/24 to any port 3389

如果你想允许从任何地方访问(由于安全原因,这种方式不鼓励),运行:

sudo ufw allow 3389

关闭防火墙:

sudo ufw disable

打开 Windows 附件自带的远程桌面连接:

参考:https://jingyan.baidu.com/article/cbcede07ce04ee02f40b4d08.html

1. 按 Windows键 + R ,在运行中输入 mstsc
2. 在远程桌面登录框中输入 IP 地址和 Ubuntu 系统的用户名,点击连接,输入密码。

参考:https://fearby.com/article/setup-ubuntu-desktop-gui-vultr-vm-remotely/
参考:https://blog.csdn.net/cyphax/article/details/112854356
参考:https://www.zyku.net/gongju/1874.html