Linux安装字体库

Linux安装字体

  1. 下载需要安装的字体

① 在Windows/Fonts路径下找到需要的字体,上传到需要安装字体的linux服务器

  1. 查看linux有什么字体

命令:fc-list 

 

  1. 安装字体库

命令:yum -y install fontconfig

这时在/usr/share/目录就可以看到fonts和fontconfig目录了,

本来就有说明已经安装过字体库无需再执行yum安装。

  1. 服务器安装

①创建chinese目录

命令:mkdir -p /usr/share/fonts/chinese

 

②上传的字体拷贝到 /usr/share/fonts/chinese

命令: mv /home/simsun.ttc /usr/share/fonts/chinese

mv /home/STSONG.TTF /usr/share/fonts/chinese

mv /home/STZHONGS.TTF /usr/share/fonts/chinese

 

③修改权限

命令:chmod -R 755 /usr/share/fonts/chinese

  1. 安装ttmkfdir

命令:yum -y install ttmkfdir

①执行ttmkfdir

命令:ttmkfdir -e /usr/share/X11/fonts/encodings/encodings.dir

②修改fonts.conf

命令:vi /etc/fonts/fonts.conf

再<!-- Font directory list --> 下添加<dir>/usr/share/fonts/chinese</dir>

:wq保存退出

③刷新缓存

命令:fc-cache

④检查

命令:fc-list 

 

 

有宋体则安装成功

posted @ 2024-03-20 16:10  牛啊!  阅读(1522)  评论(0编辑  收藏  举报