1. 程式人生 > >轉載 CentOS 7安裝GNOME桌面 和 配置 VNC 服務器

轉載 CentOS 7安裝GNOME桌面 和 配置 VNC 服務器

-- idt 安裝 sytem cal rhel -i load mon

CentOS 7安裝GNOME桌面 和 配置 VNC 服務器
這是一個關於怎樣在你的 CentOS 7 上安裝GNOME桌面 和 配置 VNC 服務器的教程。當然這個教程也適合 RHEL 7 安裝GNOME桌面 和 配置 VNC 服務器。

1、安裝桌面
yum check-update
yum groupinstall "X Window System" "GNOME Desktop" -y

2、設置默認啟動圖形界面
unlink /etc/systemd/system/default.target
ln -sf /lib/systemd/system/graphical.target /etc/systemd/system/default.target

3、安裝 VNC 服務器
yum install tigervnc-server -y

然後,我們需要在 /etc/systemd/system/ 目錄裏創建一個配置文件。我們可以將 /lib/systemd/sytem/[email protected] 拷貝一份配置文件範例過來。

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

4、配置VNC服務器
vi /etc/systemd/system/vncserver@:1.service
然後打開這個配置文件/etc/systemd/system/vncserver@:1.service替換掉默認用戶名

找到這一行
ExecStart=/sbin/runuser -l -c "/usr/bin/vncserver %i"
PIDFile=/home//.vnc/%H%i.pid
這裏我直接用root 用戶登錄,所以我替換成
ExecStart=/sbin/runuser -l root -c "/usr/bin/vncserver %i"
PIDFile=/root/.vnc/%H%i.pid

5、重加載 systemd
# systemctl daemon-reload

6、VNC設密碼
# vncpasswd

7、配置防火墻iptables或者firewalld
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 默認防火墻的可能需要
# firewall-cmd --permanent --add-service vnc-server
# systemctl restart firewalld.service

8、設默認啟動並開啟VNC
# systemctl enable vncserver@:1.service
# systemctl start vncserver@:1.service

9、重新啟動服務器
reboot
技術分享圖片

轉載 CentOS 7安裝GNOME桌面 和 配置 VNC 服務器