Linux VNC server 安装配置
1.安装vnc server [ root@pxe ~]# yum install tigervnc-server -y 2.设置 vnc server 开机启动 [ root@pxe ~]# chkconfig vncserver on 3.修改vncserver 配置文件 [ root@pxe ~]# vi /etc/sysconfig/vncservers 在配置文件后添加以下内容 VNCSERVERS="2:root" VNCSERVERARGS[2]="-geometry 1366x768 -nolisten tcp" 设置vncserver 的密码 [ root@pxe ~]# vncpasswd Password: Verify: 4.启动sncserver 服务 [ root@pxe ~]# /etc/init.d/vncserver start 5.使用VNC Viewer 远程连接 CentOS7配置VNC 一.安装 以root用户运行以下命令来安装vncserver; yum install tigervnc-server 同样运行以下命令来安装vncviewer; yum install vnc 停止并禁用防火墙; systemctl stop firewalld.service systemctl disable firewalld.service 二