正文
一.Centos系列
1.安装字体库
yum -y install fontconfig
2.添加中文字体,建立存储中文字体的文件夹
mkdir /usr/share/fonts/chinese
3.在windows上打开c盘下的Windows/Fonts目录,一般选择宋体和黑体,可以看到2个后缀名ttf和ttc的文件,将中文字体复制到Linux中那个chinese文件夹
4.添加权限
chmod -R 755 /usr/share/fonts/chinese
5.安装ttmkfdir来搜索目录中所有的字体信息,并汇总生成fonts.scale文件
yum -y install ttmkfdir
6.接下来生成
ttmkfdir -e /usr/share/X11/fonts/encodings/encodings.dir
7.修改字体配置文件
vi /etc/fonts/fonts.conf
8.可以看到一个Font list,即字体列表,添加中文字体文件夹位置,生成缓存
fc-cache
查看中文字体是否被添加进去
fc-list
二.Ubuntu系列
相关命令:
# 查看已安装的中文字体
fc-list :lang=zh
# 查看已安装的中文字体并排序
fc-list :lang=zh-cn | sort
Ubuntu对软件包的支持很大力
# 文泉驿黑体
apt install ttf-wqy-zenhei
apt install fonts-wqy-microhei
标签:Centos,fonts,list,中文字体,fc,install,Ubuntu
From: https://www.cnblogs.com/shuiche/p/16934118.html