一、查看是否安装 VNC
好像 6.0 以后VNC名字由 vnc 改成 tigervnc
[[email protected] ~]# rpm -qa|grep tigervnc
tigervnc-1.0.90-0.17.20110314svn4359.el6.x86_64
tigervnc-server-1.0.90-0.17.20110314svn4359.el6.x86_64
如果没有就安装下了
[[email protected] ~]# yum install tigervnc tigervnc-server
添加启动项
[[email protected] ~]# chkconfig --add vncserver
[[email protected] ~]# chkconfig vncserver on
二、设置 VNC 密码
[[email protected] ~]# vncserver
Creating default startup script /root/.vnc/xstartup
Starting applications specified in /root/.vnc/xstartup
Log file is /root/.vnc/xen:1.log
会在当前用户主目录下生成 .vnc 目录和配置文件
[[email protected] ~]# vncpasswd
Password:
Verify:
设置的密码保存在 /root/.vnc/passwd
三、VNC 配置
如果直接启动
[[email protected] .vnc]# /etc/init.d/vncserver start
正在启动 VNC 服务器:no displays configured [失败]
所以要修改 /etc/sysconfig/vncservers 文件添加以下内容
VNCSERVERS="2:root"
# 桌面号:用户监听 590* 端口
VNCSERVERARGS[2]="-geometry 800x600"
这样修改后,就算 /etc/inittab 启动模式为 3 也可以正常进入图形界面
启动 vncserver
[[email protected] ~]# /etc/init.d/vncserver start
正在启动 VNC 服务器:2:root xauth: (stdin):1: bad display name "xen:2" in "add" command
New ‘xen:2 (root)‘ desktop is xen:2
Starting applications specified in /root/.vnc/xstartup
Log file is /root/.vnc/xen:2.log
[确定]
四、VNC 连接
10.10.10.15:5902
问题:
1、VNC客户端连接过去,灰色屏幕;解决如下:
安装X Window System和Desktop两组包即可:
yum groupinstall “X Window System”-y;yum groupinstall Desktop -y