# 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:fred 2:joe" # fred's VNC options VNCSERVERARGS[1]="-geometry 1024x768" # joe's VNC options VNCSERVERARGS[2]="-geometry 1280x1024"
其中VNCSERVERS變量表示提供幾個桌面和每個桌面的用戶名。VNCSERVERARGS是啟動vncserver時的參數,一般只要設置分辨率就足夠了。
3. 使用chkconfig vncserver on命令使系統開機時啟動vncserver.
4. 使用service vncserver start命令立即啟動vncserver.
5. VNC的默認桌面是一個非常簡單的環境,即twm窗口管理器。如果要使VNC看起來和本地登陸界面差不多,可以編輯~/.vnc/xstartup文件,並將文件中
Uncomment the following two lines for normal desktop
後面的兩行取消注解。
在客戶端需要使用vncvIEw軟件來連接到vncserver上,可以到http://www.tightvnc.com/download.Html#stable上下載tightvnc的window客戶端軟件。啟動vncvIEwer之後,在VNC server提示處輸入
10.239.56.94:1
其中,前者為vncserver的IP地址,後者是需要登陸的VNC桌面。在輸入密碼後,VNC遠程桌面環境就出現了。快捷鍵Ctl+Alt+Shift+F可以進行全屏和非全屏的切換。