centos7安装xfce桌面
用了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上
或者是用wget从网络上下载
ftp的章节在这里:http://www.cnblogs.com/fengyumeng/p/7351167.html
将字体放入
/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
找到有 <!-- Font directory list --> 这一块
将这行添加进去 <dir>/usr/share/fonts/chinese</dir>
然后刷新字体缓存
fc-cache
再次查看系统中的字体
fc-list
此时应该可以看到中文了 如果不行重启看看
下班回来就一直折腾 搞到一点半才完事 终于松了一口气
因为装的不是虚拟机 所以无法截图 只能把流程记录下来 以便以后查看