用了centos自帶的gnome桌面 太重了 啟動超慢 記憶體占用近2g
因此打算換乙個輕量級的桌面xfce
先安裝桌面協議
yum groupinstall "x window system"
安裝xfce
yum groupinstall xfce
安裝好後進入桌面
systemctl isolate graphical.target
設定預設啟動為圖形化介面
systemctl set-default graphical.target
可能是人品差 我這裡中文全是小方框
檢視當前語言
echo $lang
如果不是中文則手動設定為中文
臨時設定:lang=zh_cn.utf-8
永久設定:
vi /etc/locale.conf
lang=zh_cn.utf-8
檢視系統中的字型:
fc-list
如果沒有中文字型則繼續往下走
安裝字型庫
yum -y install fontconfig
新增中文字型
這裡有點難度 要用ftp把windows上的字型傳到centos上
ftp的章節在這裡:
將字型放入
/usr/share/fonts/fonts/chinese/中
設定許可權
chmod 755 -r /usr/share/fonts/chinese
安裝依賴包 這個應該是起字型搜尋作用
yum -y install ttmkfdir
執行命令
ttmkfdir -e /usr/share/x11/fonts/encodings/encodings.dir
配置字型
vi /etc/fonts/fonts.conf
找到有 這一塊
將這行新增進去 /usr/share/fonts/chinese
然後重新整理字型快取
fc-cache
再次檢視系統中的字型
fc-list
此時應該可以看到中文了 如果不行重啟看看
下班回來就一直折騰 搞到一點半才完事 終於松了一口氣
因為裝的不是虛擬機器 所以無法截圖 只能把流程記錄下來 以便以後檢視
CentOS7 安裝Xfce桌面環境
作為乙個web菜鳥,個人認為盡快的熟悉開發環境和作業系統是必須的。而第乙個要做的就是自己動手搭建乙個開發環境,可以作為以後學習和工作的基礎。作業系統有很多,centos suse ubuntu debian等等。真正在開發中用到最多的就是centos,而且老版本的還比較多。為了以後的工作考慮,選擇c...
centos7安裝xfce輕量桌面環境
1.安裝額外yum源 yum install epel release 2.安裝依賴元件 yum upgrade yum y groupinstall x window system 3.安裝xfce桌面環境 yum y groupinstall x11yum enablerepo epel y g...
centos7 安裝centos桌面
一 輸入命令 yum groupinstall gnome desktop graphical administration tools 二 設定系統啟動等級。systemctl get default 獲取當前系統執行形式,會顯示multi user.target 命令列終端 或者 graphic...