Linux下安装中文字体

2021-05-28 10:14:35 浏览数 (1)

一.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系列

1.不得不说Ubuntu对软件包的支持很大力 apt install ttf-wqy-zenhei apt install fonts-wqy-microhei

0 人点赞