1 系统版本
CentOS release 6.2 (Final)
以下安装需要用root权限操作。
2 安装x windows
yum groupinstall -y “X Window System” //注意有引号
3 安装图形界面软件 GNOME
yum groupinstall -y “GNOME Desktop” “Graphical Administration Tools”
经过上面的操作,系统启动默认还是命令行页面的,需要我们进行切换。如果想要使系统启动即为图形化窗口,需要执行下面的命令
ln -sf /lib/systemd/system/runlevel5.target /etc/systemd/system/default.target
4 下面配置远程桌面相关东西
yum install -y xrdp.x86_64
遇到一个错误
--> Running transaction check
---> Package xrdp.x86_64 1:0.9.6-1.el7 will be installed
--> Processing Dependency: xorgxrdp for package: 1:xrdp-0.9.6-1.el7.x86_64
--> Running transaction check
---> Package xorgxrdp.x86_64 0:0.2.6-2.el7 will be installed
--> Processing Dependency: xorg-x11-server-Xorg(x86-64) = 1.19.5 for package: xorgxrdp-0.2.6-2.el7.x86_64
--> Finished Dependency Resolution
Error: Package: xorgxrdp-0.2.6-2.el7.x86_64 (epel)
Requires: xorg-x11-server-Xorg(x86-64) = 1.19.5
Installed: xorg-x11-server-Xorg-1.19.3-11.el7_4.2.x86_64 (@updates)
xorg-x11-server-Xorg(x86-64) = 1.19.3-11.el7_4.2
Available: xorg-x11-server-Xorg-1.19.3-11.el7.x86_64 (base)
xorg-x11-server-Xorg(x86-64) = 1.19.3-11.el7
Available: xorg-x11-server-Xorg-1.19.3-11.el7_4.1.x86_64 (updates)
xorg-x11-server-Xorg(x86-64) = 1.19.3-11.el7_4.1@H_301_255@
google后发现,是7.4的bug。一个解决办法是将xorgxrdp降级。
手动下载一个低版本的rpm包
wget https://kojipkgs.fedoraproject.org//packages/xorgxrdp/0.2.6/1.el7/x86_64/xorgxrdp-0.2.6-1.el7.x86_64.rpm
手动安装 rpm -ivh xorgxrdp-0.2.6-1.el7.x86_64.rpm@H_301_255@
再次安装
yum install -y xrdp
5
安装 yum install tigervnc tigervnc-server
启动并观察相关服务
systemctl start xrdp
systemctl enable xrdp
systemctl status xrdp.service
ss -antup|grep xrdp@H_301_255@
#7 ok
上图,完成。
原文链接:https://www.f2er.com/centos/374354.html