C/C++教程

使用X Manager远程CentOS 7服务器(XDMCP)

本文主要是介绍使用X Manager远程CentOS 7服务器(XDMCP),对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!
yum install -y epel-release         # 安装epel源
yum install -y lightdm && yum groupinstall -y xfce        # 安装lightdm和Xfce

修改lightdm.conf文件
vim /etc/lightdm/lightdm.conf

[XDMCPServer]
enabled=true
port=177
systemctl disable gdm && systemctl enable lightdm     # 将Display Manager切换为lightdm
systemctl start lightdm     # 启动lightdm
sudo systemctl stop firewalld      # 关闭防火墙

参考博客:
https://blog.csdn.net/lyfqyr/article/details/89041929

这篇关于使用X Manager远程CentOS 7服务器(XDMCP)的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!