我用的是CentOS4.3,默认已经安装了vnc-server-4.0-8.1。如果你不确定你的系统安装了没用rpm –qa vnc | grep vnc 试试。
以下操作都是以ROOT身份运行。
vncpasswd 修改连接密码。
修改/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" & export LANG=zh_CN.GB18030 gnome-session & #twm &
|
Vnc默认是用twm做window,这个功能太差劲了,注释掉,加了一行:gnome-session &。我是用gnome的,用KDE的话google一下吧。
export LANG=zh_CN.GB18030这一行在每次会话的时候把语言改成中文,我的系统默认是en_US.UTF-8,进入Xwindow时就不会有语言上的问题了。
vi /etc/sysconfig/vncservers
# The VNCSERVERS variable is a list of display:user pairs. # # Uncomment the line below to start a VNC server on display :1 # as my 'myusername' (adjust this to your own). You will also # need to set a VNC password; run 'man vncpasswd' to see how # to do that. # # DO NOT RUN THIS SERVICE if your local area network is # untrusted! For a secure way of using VNC, see # <URL:http://www.uk.research.att.com/vnc/sshvnc.html>.
VNCSERVERS="1:root" VNCSERVERARGS[1]="-geometry 1024x768"
|
VNCSERVERS="1:root"表示第一个vnc配置是以root身份运行的。
VNCSERVERARGS[1]="-geometry 1024x768"注意这里的[1]对应上面的1:root,设置分辨率。
简单吧。
VNC客户端连接的时候就是样192.168.1.108:1。我用的是RealVNC