centos7 离线安装字体fontconfig

2019独角兽企业重金招聘Python工程师标准>>> hot3.png

起因:最近做了个flowable然而linux下乱码,发现需要安装字体包

在线:直接 yum -y install fontconfig;yum -y install ttmkfdir;配置下即可。

拓展:离线所需rpm包如何获取?

    百度不好找,找个可上网的服务器 yum install yum-utils  然后 yumdownloader  即可。这个很好用想要其他rpm包同理。

离线:
rpm -ivh fontconfig-2.13.0-4.3.el7.x86_64.rpm  --nodeps --force

C:\Windows\Fonts 下找自己需要字体

 cd /usr/share/fontconfig/
mkdir myfonts

上传字体文件到myfonts

赋权 chmod -R 755 /usr/share/fontconfig/myfonts/

rpm -ivh ttmkfdir-3.0.9-42.el7.x86_64.rpm   --nodeps --force

ttmkfdir -e /usr/share/X11/fonts/encodings/encodings.dir

vi /etc/fonts/fonts.conf
添加

       

/usr/share/fontconfig/myfonts
然后输入:wq保存退出,
刷新内存中的字体缓存fc-cache
查看是否成功fc-list
结果:
/usr/share/fontconfig/myfonts/simsun.ttc: NSimSun,新宋体:style=Regular,常规
/usr/share/fontconfig/myfonts/simsun.ttc: SimSun,宋体:style=Regular,常规

相关安装包可直接下载


 

转载于:https://my.oschina.net/openplus/blog/3045300

你可能感兴趣的:(运维,操作系统,python)