概述

在本文中,我將逐步介紹在 Linux 7 環(huán)境中安裝和配置 VNC 服務(wù)器。

我將介紹以下步驟:

  1. VNC 服務(wù)器先決條件和 rpm 安裝
  2. 配置 VNC 服務(wù)器
  3. 啟動(dòng) VNC 服務(wù)
  4. 啟用 VNC 服務(wù)器
  5. 使用 VNC 服務(wù)器訪問(wèn) GUI

二、過(guò)程

1. VNC Server先決條件和rpm安裝

注意:在安裝 VNC 服務(wù)器之前,請(qǐng)確保操作系統(tǒng)已安裝 GNOME 桌面。

要配置 VNC 服務(wù)器,必須安裝以下軟件包。

# yum install tigervnc-server # yum install xorg-x11-fonts-Type1

2.配置VNC服務(wù)器

將 VNC 配置文件/lib/systemd/system/vncserver@.service 復(fù)制到/etc/systemd/system目錄并修改必須連接的端口。默認(rèn)情況下,VNC 將偵聽(tīng)端口 5900。

# cp /lib/systemd/system/vncserver@.service /etc/systemd/system/vncserver@:2.service

這里我提到了端口 2,以便 VNC 桌面可以在端口5902上訪問(wèn)。

手動(dòng)編輯復(fù)制的文件/etc/systemd/system/vncserver@:2.service并將<USER>替換為您的用戶名 在下面的示例中,我已將<USER>替換為oracle

# vi /etc/systemd/system/vncserver@:2.service [Unit] Description=Remote desktop service (VNC) After= ne [Service] Type=simple # Clean any existing files in /tmp/.X11-unix environment ExecStartPre=/bin/sh -c '/usr/bin/vncserver -kill %i > /dev/null 2>&1 || :' ExecStart=/usr/bin/vncserver_wrapper oracle %i ExecStop=/bin/sh -c '/usr/bin/vncserver -kill %i > /dev/null 2>&1 || :' [Install] WantedBy=mul

或者您可以使用sed命令替換字符串,

# sed -i 's/<USER>/oracle/g' /etc/systemd/system/vncserver@:2.service

3.啟動(dòng)VNC服務(wù)

切換到Oracle用戶并啟動(dòng)VNC服務(wù)

# vncserver

輸出:

[oracle@ol7-dev ~]$ vncserver Warning: ol7-dev:1 is taken because of /tmp/.X11-unix/X1 Remove this file if there is no X server ol7-dev:1 xauth: file /home/oracle/.Xauthority does not exist New 'ol7-dev:2 (oracle)' desktop is ol7-dev:2 Starting applications specified in /home/oracle/.vnc/xstartup Log file is /home/oracle/.vnc/ol7-dev:2.log [oracle@ol7-dev ~]$

4.啟用VNC服務(wù)

切換到 root 用戶并在端口 5902 上為 oracle 用戶啟用 vncserver 服務(wù)。這也將在系統(tǒng)啟動(dòng)時(shí)啟用自動(dòng)啟動(dòng)。

切換到root用戶:

# su -

重新加載 systemd 的配置

# systemctl daemon-reload

配置用戶oracle的VNC密碼

# vncpasswd oracle

啟動(dòng)并啟用 VNC 服務(wù)器服務(wù)。這將啟用系統(tǒng)啟動(dòng)時(shí)的自動(dòng)啟動(dòng)

# systemctl start vncserver@:2.service # systemctl enable vncserver@:2.service

5. 使用 VNC Server 訪問(wèn) GUI

在您的客戶端 PC 上下載并安裝任何 VNC 查看器以訪問(wèn) VNC 服務(wù)器。這里我使用的是VNC 查看器

輸入 VNC 服務(wù)器 IP 和

輸入 VNC 密碼

您現(xiàn)在已連接到 VNC 服務(wù)器。

三、小結(jié)

1、linux的vnc一般用于oracle的gui方式安裝,是最常見(jiàn)的一種使用方式。

2、一般也用于對(duì)圖形界面有特殊需求的應(yīng)用。喜歡的朋友歡迎點(diǎn)贊關(guān)注+轉(zhuǎn)發(fā)!

1.《vnc服務(wù)器端如何配置、vnc服務(wù)器端怎么登陸》援引自互聯(lián)網(wǎng),旨在傳遞更多網(wǎng)絡(luò)信息知識(shí),僅代表作者本人觀點(diǎn),與本網(wǎng)站無(wú)關(guān),侵刪請(qǐng)聯(lián)系頁(yè)腳下方聯(lián)系方式。

2.《vnc服務(wù)器端如何配置、vnc服務(wù)器端怎么登陸》僅供讀者參考,本網(wǎng)站未對(duì)該內(nèi)容進(jìn)行證實(shí),對(duì)其原創(chuàng)性、真實(shí)性、完整性、及時(shí)性不作任何保證。

3.文章轉(zhuǎn)載時(shí)請(qǐng)保留本站內(nèi)容來(lái)源地址,http://f99ss.com/keji/3226268.html