VNCServer 配置 及Vncview的使用(zt)

tonykorn97發表於2008-04-02

1、vncserver服務的啟動
redhat 及fedora 一般都自動安裝了vncserver了 只要在服務列表中選中啟動一下就可以了


2、vncserver的配置
透過編輯檔案$HOME/.vnc/xstartup來啟動你喜歡的視窗管理器。使用startkde &來啟動KDE,使用gnome-session &來啟動GNOME,fvwm2 &來啟動FVWM2 。下面是一個例子

(如果不設定,第一次登陸的時候linux 上啟動的 vnc server 內定的管理環境是 twm,不好看,也不方便,所以需要修改一下)


#####################################################
#!/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" &
gnome-session
#startkde
#twm &
##########################################################

或者:
##########################################################
#!/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" &
#startkde
#twm &
###########################################################

3、開始使用
在啟動前還是要執行一個東西的,可以使用telnet用自己的使用者登入遠端系統
執行vncserver ,若要定義介面大小,顏色看 vncserver --help,若是第一次執行
會提示輸入口令,遠端登入的口令,跟使用者口令沒關係的。口令修改可以使用
vncpasswd程式。執行成功後會有桌面號的提示類似:1 :2 的。記住桌面號。退
出telnet。每次伺服器重器後都需要執行一次。

4、登入
在windows下載一個winvnc,安裝完成後,不用啟動服務,使用它的檢視器就
可以了。輸入vnc伺服器 地址:桌面號 ,再輸入口令就可以使用了。注意,每次
使用完,請千萬不要登出掉系統,直接關閉winvnc檢視器就可以了,只要伺服器
沒問題,可以再次使使用winvnc繼續連線。
5、關閉伺服器上自己的vnc連線
vncserver -kill :桌面號
6、如何使伺服器開機自動執行vncserver 不需要自己telnet
使用linuxconf來設定vncserver啟動指令碼(/etc/init.d/vncserver)實現系統自啟動時啟動vncserver。但是預設的啟動指令碼靈活性不夠,因此編輯/etc/init.d/vncserver,修改:

"su - ${display##*:} -c "cd && [ -f .vnc/passwd ]
&& vncserver :${display%%:*}""
為:

"su - ${display##*:} -c "cd && [ -f .vnc/passwd ]
&& vncserver ${ARGS} :${display%%:*}""
然後編輯/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
# <>.

VNCSERVERS="1:jdimpson"
ARGS="-geometry 1024x768 -alwaysshared "
在ARGS中修改"1024x768"來適應自己的X桌面實際引數配置。可以在這裡新增任何其他VNC伺服器引數配置。在VNCSERVERS中修改jdimpson為你希望執行VNC桌面的使用者。VNCSERVERS中的1表示VNC以桌面1執行,如果希望新增其他的桌面,可以修改配置如下:
VNCSERVERS="1:jdimpson 2:phred 3:sysadmin"
在RedHat系統上,使用以下命令啟動VNC:
/etc/init.d/vncserver start
現在你就可以使用VNC任何客戶端來使用VNC桌面。

來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/312079/viewspace-245848/,如需轉載,請註明出處,否則將追究法律責任。

相關文章