安装VNC Server:
注:centOS6.x使用yum安装VNC Server默认安装tigerVNC-server,而tigerVNC打开时不能开启Web端口(5800),因此,不可在centOS6.x上使用yum安装。 附上另外一个版本的VNC Server下载地址:
http://download.csdn.net/detail/fengzhu1234/7679549
下载后, rpm -ivh filename.rpm 执行安装。
再进行配置:
1) vim /etc/sysconfig/vncserver
在文件末尾添加用户:
2)在对应用户下使用 vncpasswd 设置密码(如上所示用户为root,则应该使用su root命令登入到root用户,再使用vncpasswd设置密码)。
3)完成后使用: vncserver :1 开启服务。:x表示桌面号,与vncserver之间有一个空格。桌面号与上述添加的用户对应,此处表示开启root用户的访问端口。
4)vim /root/.vnc/xstartup
#!/bin/sh
# Uncomment the following two lines for normal desk
注:centOS6.x使用yum安装VNC Server默认安装tigerVNC-server,而tigerVNC打开时不能开启Web端口(5800),因此,不可在centOS6.x上使用yum安装。 附上另外一个版本的VNC Server下载地址:
http://download.csdn.net/detail/fengzhu1234/7679549
下载后, rpm -ivh filename.rpm 执行安装。
再进行配置:
1) vim /etc/sysconfig/vncserver
在文件末尾添加用户:
VNCSERVERS="1:root" (多用户间用空格隔开)VNCSERVERARGS[1]="-geometry 800x600 -nolisten tcp"
常见参数的意义:
-geometry 800x600 设置vncserver的分辨率。800和600中间为小写字母“x”-depth 8 设置色深,分别有8、16、24等-nolisten tcp 表示不监听6000的端口-nohttpd 表示不监听5800的端口 (本例在于讲解如何使用Web端访问,因此不设置此参数)-localhost 表示本机访问
2)在对应用户下使用 vncpasswd 设置密码(如上所示用户为root,则应该使用su root命令登入到root用户,再使用vncpasswd设置密码)。
3)完成后使用: vncserver :1 开启服务。:x表示桌面号,与vncserver之间有一个空格。桌面号与上述添加的用户对应,此处表示开启root用户的访问端口。
4)vim /root/.vnc/xstartup
#!/bin/sh
# Uncomment the following two lines for normal desk