首頁 > 軟體

CentOS7.1安裝VNC,讓Win7遠端桌面Linux

2020-06-16 17:15:40

VNC  可以實現對另外的計算機的操作:

A : 可以存取另一個計算機,採用命令終端 或者視窗介面。

B : 可以遠端控制另一個計算機,兩台同步顯示操作。

看看簡單,但是實際沒有readme所說的那麼簡單。

本文介紹在CentOS7.1下安裝VNC,讓Win7遠端桌面Linux解決了不少問題,寫個教學貼,給新手們看看,如果你們碰到同樣的問題,就可以迅速解決,無需頭疼甚至放棄了。

1、檢查是否安裝VNC

rpm -q tigervnc tigervnc-server

2、安裝X-Window

yum check-update
yum groupinstall "X Window System"
yum install gnome-classic-session gnome-terminal nautilus-open-terminal control-center liberation-mono-fonts
unlink /etc/systemd/system/default.target
ln -sf /lib/systemd/system/graphical.target /etc/systemd/system/default.target
reboot #重新啟動機器

3、安裝VNC

yum install tigervnc-server -y

4、從VNC備份庫中複製service檔案到系統service服務管理目錄下【原文這裡存在錯誤,不是建立vncserver@:1.service資料夾

 cp /lib/systemd/system/vncserver@.service /etc/systemd/system/vncserver@:1.service #複製並被重新命名為vncserver@:1.service

5、修改vncserver@:1.service檔案

#進入/etc/systemd/system目錄
cd /etc/systemd/system
#編輯組態檔
vim vncserver@:
1.service
#找到下面一行
ExecStart
=/sbin/runuser -l <USER> -c "/usr/bin/vncserver %i"
PIDFile=/home/<USER>/.vnc/%H%i.pid
#修改為:(一定要改成root,不要改成其他使用者,考慮許可權問題)
ExecStart
=/sbin/runuser -l root -c "/usr/bin/vncserver %i"
PIDFile
=/root/.vnc/%H%i.pid
#如果不是root使用者 PIDFile=/home/anjos/.vnc/%H%i.pid

6、重新載入 systemd

#由於在systemd中新增了東東,得讓系統重新載入
systemctl daemon-reload

7、為vncserver@:1.service設定密碼

    vncpasswd

8、關閉防火牆

    CentoS7預設採用新防火牆firewall,不在用iptables

   [使用firewall] 

                     firewall-cmd --permanent --add-service vnc-server#新增存取許可權

                     systemctl restart firewalld.service#重新啟動firewalld

        #systemctl stop firewalld.service #停止firewall(start,啟動)

                     #systemctl disable firewalld.service #設定開機禁止firewall(enable 開機啟動)

   [使用iptables]

                     yum -y install iptables-services#安裝iptables

                     vi /etc/sysconfig/iptables#修改iptables防火規則,在合適的位置加上如下一句

                          -A INPUT -m state --state NEW -m tcp -p tcp --dport 5900:5903 -j ACCEPT

        systemctl restart iptables.service #重新啟動防火牆使設定生效-----systemctl status iptables.service#檢視狀態

        systemctl stop iptables.service #啟動iptables(start)

        systemctl disable iptables.service #禁止防火牆開機啟動(enable)#設定防火牆開機啟動

   [注意]安裝iptables後可以使用

    service iptables status#檢視防火牆狀態

    service iptables stop#關閉防火牆

    chkconfig iptables --list#檢視防火牆開機啟動狀態

    chkconfig iptables off#關閉防火牆開機啟動

9、啟動VNC服務(設定開機啟動)

systemctl enable vncserver@:1.service #設定開機啟動
systemctl start vncserver@:1.service #啟動vnc對談服務
#systemctl status vncserver@:1.service #檢視nvc對談服務狀態
#systemctl stop vncserver@:1.service #關閉nvc對談服務

10、在win7上下載VNC Viewer

     下載地址:http://www.realvnc.com/download/viewer/

     下載後,直接雙擊exe即可

11、存取

       使用你的ip加上一個1即可

 

本文永久更新連結地址http://www.linuxidc.com/Linux/2017-05/143346.htm


IT145.com E-mail:sddin#qq.com