在这篇文章里面,我们就来详细的探讨一下如何来配置vnc服务器的配置。当然如果远程的windows通过client来链接linux服务器,进行图形化的管理也不是没有可能啦!毕竟ssh没有gnome直观嘛!
其实配置VNC很简单。只要运行vncserver就好了.运行完毕后,它会在家目录生成.vnc目录。
首先使用的是vncserver 命令来运行,结果如下
[root@jadeshow .vnc]# vncserver
You will require a password to access your desktops.
Password: //输入密码
Verify: //重复密码
xauth: (stdin):1: bad display name "jadeshow:4" in "add" command
New 'jadeshow:4 (jadeshow)' desktop is jadeshow:4
Creating default startup script /root/.vnc/xstartup
Starting applications specified in /root/.vnc/xstartup
Log file is /root/.vnc/jadeshow:4.log
You will require a password to access your desktops.
Password: //输入密码
Verify: //重复密码
xauth: (stdin):1: bad display name "jadeshow:4" in "add" command
New 'jadeshow:4 (jadeshow)' desktop is jadeshow:4
Creating default startup script /root/.vnc/xstartup
Starting applications specified in /root/.vnc/xstartup
Log file is /root/.vnc/jadeshow:4.log
这个时候就能在windows或者学生端敲打VNCviewer 就可以进入远程系统了哦!
IP地址后面的:1的意思是linux上面VNC设定的Display No.每运行一个vncserver就会多创建一个Display,Display No也就会加一.虽然此时可以登录,但是登录后看到的界面是X term的界面,还不是正常的X Window界面,我们要修改配置,使之使用X Window来显示。
修改配置文件/root/.vnc/xstartup,使之与下面内容相同
#!/bin/sh
# Uncomment the following two lines for normal desktop:
unset SESSION_MANAGER
exec /etc/X11/xinit/xinitrc
[ -x /etc/vnc/xstartup ] && exec /etc/vnc/xstartup
[ -r $HOME/.Xresources ] && xrdb $HOME/.Xresources
xsetroot -solid grey
vncconfig -iconic &
xterm -geometry 80x24+10+10 -ls -title "$VNCDESKTOP Desktop" &
twm &
# Uncomment the following two lines for normal desktop:
unset SESSION_MANAGER
exec /etc/X11/xinit/xinitrc
[ -x /etc/vnc/xstartup ] && exec /etc/vnc/xstartup
[ -r $HOME/.Xresources ] && xrdb $HOME/.Xresources
xsetroot -solid grey
vncconfig -iconic &
xterm -geometry 80x24+10+10 -ls -title "$VNCDESKTOP Desktop" &
twm &
这是windows下客户端软件,注册码已经包括在里面了。
http://xok.la/file/2008/11/ha_vnc-e4_2_9-x86_win32.rar
(图的大小作了限制,传不上来 就不传了!)
本文转自 珏石头 51CTO博客,原文链接:http://blog.51cto.com/gavinshaw/174057,如需转载请自行联系原作者