聲明的是我用的是debain系統:
1.首先安裝VNC
apt-get update
apt-get install
vnc4server
apt-get install
x-window-system-core
apt-get install
gnome-panel
2.啟動vnc服務
vncserver
(將提示你輸入密碼,需輸入兩次!)
3.修改VNC的配置文件
cd /root/.vnc/
vim xstartup 把 x-window-manager & 注釋掉 加上 gnome-session &
配置文件如下:
xrdb $HOME/.Xresources
xsetroot -solid grey
x-terminal-emulator -geometry 80×24+10+10 -ls -title “$VNCDESKTOP Desktop” &
#x-window-manager &
# Fix to make GNOME work
#export XKL_XMODMAP_DISABLE=1
#/etc/X11/Xsession
gnome-session &
5.添加vncserver服務
vim /etc/init.d/vncserver
編輯文本輸入
保存退出!
6.chmod a+x /etc/init.d/vncserver
(該命令是添加可執行權限)
7.重啟vncserver服務
service vncserver restart
8.將VNC設置成開機啟動
apt-get install chkconfig
chkconfig --add
vncserver
9.使用命令
netstat
-an|more|grep 5901
可以看到5901服務端口已經開啟!
7.接下來可以用vncview來進行訪問了!
(vncview的下載地址:http://www.xp510.com/xiazai/Networking/mstsc/23862.html)