转载地址:https://fbd.intelleeegooo.cc/install-chinese-font-on-centos/

1.安装fontconfig

yum -y install fontconfig

这个命令执行完成之后,就可以在/usr/share文件夹里面看到fonts和fontconfig
使用上面这个命令,安装fontconfig,它可以用来安装字体库。

2.添加中文字体库

从window的C:\Windows\Fonts里面把你需要的字体拷贝出来。比如说我需要宋体,我就选择simsun.ttc

在CentOS的/usr/share/fonts新建一个叫chinese的文件夹

然后把刚刚拷贝字体放到CentOS的/usr/share/fonts/chinese里面

修改chinese目录的权限。chmod -R 775 /usr/share/fonts/chinese

接下来需要安装ttmkfdir来搜索目录中所有的字体信息,并汇总生成fonts.scale文件,输入命令yum -y install ttmkfdir

执行ttmkfdir命令, ttmkfdir -e /usr/share/X11/fonts/encodings/encodings.dir

修改字体配置文件,vi /etc/fonts/fonts.conf

<!-- Font directory list -->

<dir>/usr/share/fonts</dir>
<dir>/usr/share/X11/fonts/Type1</dir>
<dir>/usr/share/X11/fonts/TTF</dir>
<dir>/usr/local/share/fonts</dir>
<dir>/usr/local/share/fonts/chinese</dir>
<dir>~/.fonts</dir>
<!--

刷新内存中的字体缓存,fc-cache
看一下现在机器上已经有了刚才添加的字体。fc-list :lang=zh

利用 yum 更新安全补丁

安装插件 yum install yum-security 列举安全补丁 yum --security check-updateyum updateinfo list securityyum list updates --securityyum list-sec secur...

阅读全文

Linux一些常用命令

@1.date:显示系统时间 例子:Fri Dec 11 11:17:37 CST 2015 @2.who:当前用户 例子:Fri Dec 11 11:17:37 CST 2015 @3.cal:当前日期 December 2015 Su Mo T...

阅读全文

yum 不能用的解决方法

$ su 切换到root权限 # rm -f /var/lib/rpm/__db.* 将rpm所用的数据库删除 ;这一步最好把_db.*备份一下 # rpm –rebuilddb 重建该数据库 # yum clea...

阅读全文

欢迎留言