2012年10月24日 星期三

不登入 X-Windows 就啟動 VNC Server


在 X-Windows 安裝 VNC Server (vino) 時會發現,必須要登入後才會啟動服務。
想在登入前就啟動 VNC 必須安裝另一套服務

1.安裝 x11vnc
 yum install x11vnc

2.修改設定
vim /etc/X11/xorg.conf

在 "Screen" 區塊裡新增:
Section "Screen"
        Identifier "Screen0"
        Device     "Videocard0"
        DefaultDepth     24
        SubSection "Display"
                Viewport   0 0
                Depth     24
        EndSubSection
        Option "SecurityTypes" "VncAuth"       #新增
        Option "UserPasswdVerifier" "VncAuth" #新增
        Option "PasswordFile" "/root/.vnc/passwd" #新增
EndSection

在最後新增 "Module" 區塊
Section "Module"
  Load "vnc"
EndSection

3.設定 VNC 密碼
vncpasswd


##EasyReadMore##