伺服器客戶要求使用linux,未了操作方便,於是考慮如何使用視覺化介面操作,以下是使用centos7安裝gnome視覺化介面流程的步驟總結和歸納:
1:使用xshell或jutty等連線工具進入系統(預設使用者名稱root)
2:執行命令安裝 gnome 包
$sudo yum groupinstall "gnome desktop"
"graphical administration tools"
(如果安裝過程中出現以下錯誤)
transaction check error:
.107-5.el7_2.2.x86_64 conflicts with
file
from package lvm2-7:2.02
.105-14.el7.x86_64
.107-5.el7_2.2.x86_64 conflicts with
file
from package lvm2-7:2.02
.105-14.el7.x86_64
.107-5.el7_2.2.x86_64 conflicts with
file
from package lvm2-7:2.02
.105-14.el7.x86_64
error summary
則需要先執行以下兩條安裝命令
yum install -y docker
安裝完成後重新執行上面的安裝 gnome包命令
3 更新系統的執行級別,如果你想在系統下次啟動的時候自動進入圖形介面,那麼我們需要更改系統的執行級別,輸入下面的命令來啟用圖形介面。
$sudo ln -sf /lib/systemd/system/runlevel5.target/etc/systemd/system/default.target
4.重啟完成gnome的安裝
5.為了實現遠端登入操作,需要安裝svn外掛程式
首先試試伺服器裝了vnc沒
rpm -q tigervnc tigervnc-server
如果沒有出現
package tigervnc is
not installed
package tigervnc-server is
not installed
6.執行
yum check-update
7.安裝vnc packages
yum install tigervnc-server
-y
8.修改配置資訊,在/etc/systemd/system/下建立資料夾vncserver@:1.service 把example config 檔案從/lib/systemd/system/[email protected]複製到裡面
cp/lib/systemd/system/[email protected]/etc/systemd/system/vncserver@:
1.service
9.編輯配置檔案/etc/systemd/system/vncserver@:1.service替換掉預設使用者名稱
執行
vi /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
如果是其他使用者的話比如john替換如下
execstart=/sbin/runuser -l -c "/usr/bin/vncserver %i"
pidfile=/home/
/.vnc/
%h%i.pid
10.重載入 systemd
systemctl daemon-reload
11.為vnc設密碼
vncpasswd
12.centos 7 iptable防火牆設定
vim /etc/sysconfig/iptables(vi操作)
在合適位置加上
-a input -m state --state new
-m tcp -p tcp --dport 5900:5903
-j accept
13.重啟iptable
service iptables restart
如果出錯則忽略
14.再執行以下防火牆設定命令
firewall-cmd
--permanent --add-service vnc-server
(可能出錯,忽略)
systemctl restart firewalld.service
15.設預設啟動並開啟vnc
systemctl
enable
vncserver
@:1.service
systemctl restart firewalld.service
16.最後svn連線
Centos 7 安裝GNOME桌面環境
安裝gnome desktop 和graphical administration tools 桌面服務 命令 yum groupinstall gnome desktop graphical administration tools y如果有以下錯誤 該問題是由於檔案fwupdate efi 同g...
centos7 安裝GNOME和KVM管理工具
今天在安裝centos7後按照預設安裝,發現它是以最小方式進行安裝,無桌面環境 解決辦法如下 我們需要做的 第一步,安裝乙個桌面 gnome desktop,命令 yum groupinstall y gnome desktop 第二步,設定左面啟動 命令 systemctl set default...
CentOS7安裝GNOME視覺化介面流程(可用)
伺服器客戶要求使用linux,未了操作方便,於是考慮如何使用視覺化介面操作,以下是使用centos7安裝gnome視覺化介面流程的步驟總結和歸納 1 使用xshell或jutty等連線工具進入系統 預設使用者名稱root 2 執行命令安裝 gnome 包 sudo yum groupinstall ...