配置过程:
1. 运行VNC Server.
[root@localhost ~]#vncserver
看到成功提示信息:
You will require a password to access your desktops.
Password: ----说明:为安全起见,当第1次启动VNC Server时,会要求设置远程连接时的密码。
Verify:
New ‘X’ desktop is linux:1
Creating default startup script /root/.vnc/xstartup
Starting applications specified in /root/.vnc/xstartup
Log file is /root/.vnc/linux:1.log
之后后,说明VNC服务器端已经成功启动。通常如果是第一次启动的话,会提示你输入远程连接口令和口令验 证;如果是以后运行,则可以使用“./vncpasswd”命令来进行口令的更改。
2. 停止VNC服务器。
[root@localhost ~]#vncserver -kill :端口编号
3. 如果在客户端成功连接上VNC服务器(或者通过浏览器连接上)之后,看不到Linux主机的屏幕(不能显示桌面,而只有一个Terminal窗口),则可以修改.vnc文件夹中的xstartup文件。
[root@localhost ~]#vi .vnc/xstartup 删除里面的所有内容后输入下面的代码。
unset SESSION_MANAGER ZiALinux联盟
exec /etc/X11/xinit/xinitrc
保存退出,然后重新起动VNC Server。
本篇文章来源于 Linux公社网站(www.linuxidc.com) 原文链接:http://www.linuxidc.com/Linux/2009-02/18342.htm