传奇哥'S BLOG传奇哥'S BLOG

Centos 安装桌面环境并启动远程桌面

#安装EPEL

yum -y clean all 
yum -y install epel-release 
yum -y update

#安装图形界面软件包

yum  -y groupinstall "Server with GUI"

#设置图形模式为默认启动模式

systemctl set-default graphical

#重启

reboot

#安装XRDP

yum -y install xrdp

#启用并启动XRDP服务:

systemctl enable xrdp --now 
systemctl start xrdp

# 配置防火墙

#为了允许来自外部计算机的RDP连接,您需要配置防火墙。以下命令将添加RDP端口(3389)的例外规则:

firewall-cmd --permanent --add-port=3389/tcp
firewall-cmd --reload

#配置XRDP

#XRDP的主要配置文件位于/etc/xrdp/xrdp.ini中,允许您设置全局配置和创建不同的xrdp登录会话。完成配置后,记得重新启动XRDP以应用新的设置:

sudo systemctl restart xrdp


#另附Ubuntu一键安装xRDP脚本

wget https://www.c-nergy.be/downloads/xRDP/xrdp-installer-1.5.1.zip
unzip xrdp-installer-1.5.1.zip
chmod +x xrdp-installer-1.5.1.sh
 ./xrdp-installer-1.5.1.sh

以上内容摘自:xRDP – 在 Ubuntu 上轻松安装 xRDP 20.04,22.04,23.XX,24.04 (脚本版本 1.5.1) – Griffon's IT Library (c-nergy.be)

相关文章

回到首页 发表评论 回到顶部