centos7 安裝vnc服務

2021-09-08 04:04:00 字數 1130 閱讀 8305

一,安裝伺服器端

1,新增使用者:

# useradd vnc
# passwd vnc
2,安裝gnome桌面

# yum groupinstall "gnome desktop"
# unlink /etc/systemd/system/default.target
# ln -sf /lib/systemd/system/graphical.target  /etc/systemd/system/default.target
# reboot
3,安裝vnc server:

# yum install tigervnc-server -y
4, 新增配置檔案

# cp /lib/systemd/system/[email protected] /etc/systemd/system/vncserver@:1.service

開啟檔案:/etc/systemd/system/vncserver@:1.service, 把其中的替換為使用者名稱(如:vnc)

5, reload systemd  for changes.create vnc password, enable and start the service, allow vnc service in firewall.

# systemctl daemon-reload
# vncpasswd
# systemctl enable vncserver@:1.service
# systemctl start vncserver@:1.service
# firewall-cmd --permanent --add-service vnc-server
# systemctl restart firewalld.service
注:很多os都有現成vnc server的binary包可以直接使用。 可訪問:

二,安裝客戶端

我使用的客戶端是ubuntu, apt-get install vnc-viewer即可。

推薦使用chrome vnc 外掛程式。

參考:

centos7 安裝vnc遠端服務

centos7 安裝vnc遠端服務 避免一些系統方面的意外錯誤,最好更新yum到最新,生產環境有業務在執行不建議更新 yum update 安裝gnome desktop圖形桌面服務 yum groupinstall gnome desktop 安裝vnc yum install tigervnc ...

Centos 7 安裝VNC步驟

先囉嗦一下vnc是什麼 virtual network computing vnc允許linux系統可以類似實現像windows中的遠端桌面訪問那樣訪問linux桌面。本文配置機器是興寧市網路資訊中心的一台centos 7 hp伺服器環境下執行。首先試試伺服器裝了vnc沒 root wic rpm ...

Centos 7 安裝VNC步驟

先囉嗦一下vnc是什麼 virtual network computing vnc允許linux系統可以類似實現像windows中的遠端桌面訪問那樣訪問linux桌面。本文配置機器是興寧市網路資訊中心的一台centos 7 hp伺服器環境下執行。首先試試伺服器裝了vnc沒 root wic rpm ...