centos7安装图形化界面并远程连接
Posted 森度
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了centos7安装图形化界面并远程连接相关的知识,希望对你有一定的参考价值。
1. 安装图形化界面
# yum groupinstall "X Window System" -y
# yum install gnome-classic-session gnome-terminal nautilus-open-terminal control-center liberation-mono-fonts -y
#### 设置默认启动图形界面
# unlink /etc/systemd/system/default.target
# ln -sf /lib/systemd/system/graphical.target /etc/systemd/system/default.target
2. 安装与配置 VNC 服务器
# yum install tigervnc-server -y
# cp /lib/systemd/system/[email protected] /etc/systemd/system/
# cp /lib/systemd/system/[email protected] /etc/systemd/system/[email protected]:1.service
# vim /etc/systemd/system/[email protected]:1.service
ExecStart=/sbin/runuser -l root -c "/usr/bin/vncserver %i" #将<user>替换成root
PIDFile=/root/.vnc/%H%i.pid #将<user>替换成root
#### 设置vnc连接密码
# vncpasswd
#### 设置开机启动
# systemctl enable [email protected]:1.service
#### 防火墙添加相关规则
# firewall-cmd --permanent --add-service vnc-server
#### 重启服务器
# reboot
3.使用vnc客户端连接服务器
使用realvnc,http://www.realvnc.com/
输入“IP:1”
再输入密码即可
vnc默认端口是5900+vnc端口数字
以上是关于centos7安装图形化界面并远程连接的主要内容,如果未能解决你的问题,请参考以下文章
阿里云centos上安装图形化界面(chrome运行须在图形化界面)
Ubuntu 18.04 安装图形化界面及服务器端远程桌面连接的解决方案