centos图形界面,vncserver
Posted juandx
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了centos图形界面,vncserver相关的知识,希望对你有一定的参考价值。
yum -y groupinstall "Server with GUI" RHEL7 安装图形界面
1. 以root角色运行以下命令来安装TigerVNC server
yum install tigervnc-server 也可以同时安装vnc client
yum install vnc
2. 配置VNC Server
2.1 创建一个新的配置文件,我这里是开启3号窗口,方法如下:
cp /lib/systemd/system/[email protected] /lib/systemd/system/[email protected]:3.service
2.2 编辑/lib/systemd/system/[email protected]:3.service,设置用户zhongq相关参数,最终内容如下:(这里的用户zhongq须替换为你的账户)
[Unit] Description=Remote desktop service (VNC)
[Unit] Description=Remote desktop service (VNC) After=syslog.target network.target [Service] Type=forking # Clean any existing files in /tmp/.X11-unix environment ExecStartPre=/bin/sh -c ‘/usr/bin/vncserver -kill %i > /dev/null 2>&1 || :‘ ExecStart=/sbin/runuser -l zhongq -c "/usr/bin/vncserver %i -geometry 1024x768" PIDFile=/home/zhongq/.vnc/%H%i.pid ExecStop=/bin/sh -c ‘/usr/bin/vncserver -kill %i > /dev/null 2>&1 || :‘ [Install] WantedBy=multi-user.target
2.3 更新systemctl来确保其生效
systemctl daemon-reload
2.4 设置用户vnc的密码
vncpasswd zhongq
2.5 启动该服务来启用vnc
vncserver
vncserver list
vncserver -kill :3
2.6 我们也可以将其设置为开机自启动
systemctl enable [email protected]:3.service
以上是关于centos图形界面,vncserver的主要内容,如果未能解决你的问题,请参考以下文章