CentOS8安装GUI并使用Windows的RDP远程连接桌面

1、安装Server with GUI (参考https://blog.csdn.net/weixin_45901519/article/details/116280224或者https://blog.csdn.net/zzzjjjfff/article/details/105203359)

yum groupinstall -y 'Server with GUI'
systemctl set-default graphical

2、RDP部分(参考https://www.cnblogs.com/lenmom/p/9516210.html)

yum install -y epel-release
yum install -y xrdp tigervnc-server
Continue reading "CentOS8安装GUI并使用Windows的RDP远程连接桌面"

CentOS中Xdrop使用Windows远程桌面连接后闪退的解决办法

问题分析:这是由于anaconda中的 dbus_daemon 和/usr/bin中的dbus_daemon 冲突导致,解决方法就是把/usr/bin的path放在最前面

查看当前path:

echo $PATH

可以看见anaconda的bin在/usr/bin之前

解决方法: Continue reading "CentOS中Xdrop使用Windows远程桌面连接后闪退的解决办法"