服務端環境:centos 6.7
客戶端環境:windows 7
可以直接rpm安裝vnc的服務端:
rpm -ivh tigervnc-server-1.1.0-16.el6.x86_64.rpm
如果rpm安裝時發現有依賴,建議直接使用yum安裝,輕鬆解決依賴問題:
yum install tigervnc-server
如果系統安裝時並沒有安裝桌面選項,那麼就還需要用yum安裝一下桌面:
yum groupinstall "x window system" "desktop"
vncservers="1:root"
vncserverargs[1]="-geometry 800x600 -alwaysshared -depth 24"
注:解析度可以根據實際情況調整,解析度不合適可能導致vnc連線顯示黑屏的現象。
vncserver
第一次輸入提示需要設定vnc的密碼:
[root@jy-db ~]# vncserver
you will require a password to access your desktops.
password:
verify:
xauth: creating new authority file /root/.xauthority
new 'jy-db:1 (root)' desktop is jy-db:1
creating default startup script /root/.vnc/xstartup
log file is /root/.vnc/jy-db:1.log
[root@jy-db ~]#
後期若想修改vnc使用者密碼,可使用vncpasswd命令修改
[root@jy-db ~]# vncpasswd
password:
verify:
重啟vncserver服務:
/etc/init.d/vncserver restart
檢視vnc的會話資訊:
vncserver -list
輸入192.168.56.102:1,
確定之後,提示輸入密碼,這裡的密碼是指vnc的密碼,
確定後,即可通過vnc連線到服務端的桌面環境了。
注:這裡的"192.168.56.102"是服務端的ip位址,而":1"對應的是vncservers的配置,這裡就是root使用者。
個人認為vnc的最大優勢是:網路突然斷開,也不會影響之前正在做的操作。
VNC的安裝與配置
一,安裝tigervnc server vnc軟體包 root localhost yum install tigervnc server 設定開機自啟動 root localhost chkconfig level 35 vncserver on 檢視配置檔案所在位置 root localhost...
vnc安裝配置
root xcorder vncserver you will require a password to access your desktops.password verify xauth creating new authority file root xauthority new xcord...
VNC安裝配置
vncserver端安裝 1.yum或rpm安裝vncserver端 命令yum y install vnc server 或者rpm方式 rpm ivh vnc server 2.編輯配置檔案 vim etc sysconfig vncservers 新增兩行檔案 第一行 vncservers 2...