VNC を使用すると、Windows のリモート デスクトップ アクセスと同様に、Linux システムが Linux デスクトップにアクセスできるようになります。この記事で構成されたマシンは、興寧市ネットワーク インフォメーション センターの Centos 7 HP サーバー環境で実行されています。
まずサーバーに VNC がインストールされているかどうかを確認してください
[root@wic ~]# rpm -q tigervnc tigervnc-server
インストールされていない場合は、直接表示されます
package tigervnc is not installedpackage tigervnc-server is not installed
X-Windows デスクトップがインストールされていない場合は、まず Xwindows をインストールする必要があります
[root@wic ~]# yum check-update[root@wic ~]# yum groupinstall "X Window System"[root@wic ~]# yum install gnome-classic-session gnome-terminal nautilus-open-terminal control-center liberation-mono-fonts[root@wic ~]# unlink /etc/systemd/system/default.target[root@wic ~]# ln -sf /lib/systemd/system/graphical.target /etc/systemd/system/default.target[root@wic ~]# reboot
最初のステップVNC パッケージをインストールします:
[root@wic ~]# yum install tigervnc-server -y
2 番目のステップ、構成情報を変更し、/etc/systemd/system/ の下にフォルダー vncserver@:1.service を作成し、サンプル構成ファイルを /lib/systemd/system/vncserver@ からコピーします。 .service をそれに追加します
[root@wic ~]# cp /lib/systemd/system/vncserver@.service /etc/systemd/system/vncserver@:1.service
そして、この設定ファイルを開きます /etc/systemd/system/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
に置き換えます。 john などの別のユーザーの場合は、次のように置き換えます
ExecStart=/sbin/runuser -l <USER> -c "/usr/bin/vncserver %i"PIDFile=/home/<USER>/.vnc/%H%i.pid
3 番目のステップ、systemd をリロードします
[root@wic ~]# systemctl daemon-reload
4 番目のステップ、VNC のパスワードを設定します
[root@wic ~]# vncpasswd
5 番目のステップは、私のCentos 7はiptableファイアウォールを使用しているため、
vim /etc/sysconfig/iptables
適切な位置に追加します
-A INPUT -m state --state NEW -m tcp -p tcp --dport 5900:5903 -j ACCEPT
iptableを再起動します
service iptables restart
Centos 7のデフォルトのファイアウォールを使用している場合は、必要になる可能性があります
[root@wic ~]# firewall-cmd --permanent --add-service vnc-server[root@wic ~]# systemctl restart firewalld.service
第六步,设默认启动并开启VNC
[root@wic ~]# systemctl enable vncserver@:1.service[root@wic ~]# systemctl start vncserver@:1.service
这样基本上Centos 端就设好了,Windows 端要去下一个VNC Viewer 的软件。连接一下试试看着有点简陋但是上去了的