About Xmanager Remote Desktop CentOS 7

藏色散人
Release: 2021-04-19 19:43:26
forward
2745 people have browsed it

The following tutorial column will introduce Xmanager Remote Desktop CentOS 7 to you in the centos tutorial column. I hope it will be helpful to friends in need!

About Xmanager Remote Desktop CentOS 7

Xmanager Remote Desktop CentOS 7

Problem

GNOME Enablement in CentOS7 The local hardware acceleration function is disabled, so there will be problems when connecting to CentOS remotely through the XDMCP protocol. This has been mentioned in the blog of Xmanager official website (http://blog.netsarang.com/89/connecting-to-centos-7/), and it is recommended to use other display managers (such as lightdm, etc.) and desktop environment (xfce or kde) to circumvent this problem.

Install lightdm

# 增加epel 源
sudo yum install epel-release
sudo yum install  lightdm
Copy after login

Edit configuration file

sudo vim /etc/lightdm/lightdm.conf
Copy after login
[XDMCPServer]
enabled=true
port=177
Copy after login

Install xfce or kde

It is recommended to install kde, the interface is better than xfce

# kde
sudo yum groupinstall "KDE Plasma Workspaces"
# xfce
sudo yum install xfce
Copy after login
# 将Display Manager 切换为 lightdm
sudo systemctl disable gdm
sudo systemctl enable lightdm
sudo systemctl start lightdm
# 关闭防火墙
sudo systemctl stop firewalld.service
Copy after login

Xstart configuration

In the Xstart configuration, the configuration of command (C) is as follows:

# xfce
/usr/bin/xfce4-session
# kde
DISPLAY=$DISPLAY; /usr/bin/startkde
Copy after login

The above is the detailed content of About Xmanager Remote Desktop CentOS 7. For more information, please follow other related articles on the PHP Chinese website!

Related labels:
source:segmentfault.com
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template