2021-05-12 14:32:11
CentOS 6.7下VNC安裝
2020-06-16 17:08:05
伺服器端環境:CentOS 6.7
用戶端環境:Windows 7
1.伺服器安裝VNC伺服器端
可以直接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"
2.編輯vnc組態檔
編輯/etc/sysconfig/vncservers,
新增以下內容:
VNCSERVERS="1:root" VNCSERVERARGS[1]="-geometry 800x600 -alwaysshared -depth 24"
註:解析度可以根據實際情況調整,解析度不合適可能導致vnc連線顯示黑畫面的現象。
3.設定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 Starting applications specified in /root/.vnc/xstartup Log file is /root/.vnc/JY-DB:1.log [root@JY-DB ~]#
後期若想修改vnc使用者密碼,可使用vncpasswd命令修改
[root@JY-DB ~]# vncpasswd Password: Verify:
4.檢視vnc的對談資訊
重新啟動vncserver服務:
/etc/init.d/vncserver restart
檢視vnc的對談資訊:
vncserver -list
5.用戶端測試vnc連線
用戶端是vncviewer,我這裡是Windows系統,下載對應的vnc安裝包HA-vnc-4.0-x86_win32-KC.exe
安裝選擇只安裝VNC Viewer即可。
輸入192.168.56.102:1,
確定之後,提示輸入密碼,這裡的密碼是指vnc的密碼,
確定後,即可通過vnc連線到伺服器端的桌面環境了。
註:這裡的"192.168.56.102"是伺服器端的IP地址,而":1"對應的是VNCSERVERS的設定,這裡就是root使用者。
個人認為VNC的最大優勢是:網路突然斷開,也不會影響之前正在做的操作。
本文永久更新連結地址:http://www.linuxidc.com/Linux/2017-09/146884.htm
相關文章