Fedora 9下創建vncserver過程如下:
#vi /etc/sysconfig/vncserver //編輯vncserver配置文件
VNCSERVERS=”1:root”
VNCSERVERARGS[1]=”-geometry 800×600 -0.0.0.0″
#vncpasswd //創建vnc口令
#vncserver (service vncserver start) //啟動vncserver
#service iptables stop //關閉iptables防火牆
#vi .vnc/xstartup //編輯xstartup的腳本
#!/bin/sh
vncconfig -iconic &
# 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
xterm -geometry 80×24+10+10 -ls -title “$VNCDESKTOP Desktop” &
twm &
在windowx xp 客戶端打開vic viewer 連接輸入: Fedora ip add:1
其它:
#vi /etc/sysconfig/iptables //允許5901端口通過
-A RH-Firewall-1-INPUT -m state –state NEW -m tcp -p tcp –dport 5901 -j ACCEPT
#vi /etc/sysconfig/vncserver //允許連接兩個不同的用戶,當然同時需要iptables開放5902端口
VNCSERVERS=”1:root 2:keith”
vncviewer 切換全屏模式--F8