美文网首页
Linux.在centos中安装字体

Linux.在centos中安装字体

作者: InitialX | 来源:发表于2018-12-10 11:26 被阅读17次

    STEPS:

    1. 下载fontconfig工具来安装字体库:
    yum -y install fontconfig
    

    ps:
    使用yum安装软件时,遇到yum被PackageKit 锁定的提示:

    Another app is currently holding the yum lock; waiting for it to exit... The other 
    application is: PackageKit Memory : 37 M RSS ( 82 MB VSZ) Started: Sun Jan 24 
    16:11:53 2010 - 14:44 ago State : Sleeping, pid: 3053
    

    只需把 /etc/yum/pluginconf.d/refresh-packagekit.confenabled=1改为enabled=0(无需重启)。

    1. 在/usr/share目录会自动新建fonts和fontconfig目录

    2. 把自己windows(c:/windows/fonts/)中电脑中的所需字体文件拷贝到/usr/share/fonts 中, 目录权限修改为755

    chmod -R 755 /usr/share/fonts 
    
    1. 安装ttmkfdir,用于搜索目录中所有的字体信息,并汇总生成fonts.scale文件:
    yum -y install ttmkfdir
    
    ttmkfdir -e /usr/share/X11/fonts/encodings/encodings.dir
    
    1. 修改字体配置文件,添加的字体路径(/usr/share/fonts),默认是已经添加的。
    vi /etc/fonts/fonts.conf
    
    1. 刷新字体缓存(无需reboot重启):
    fc-cache
    

    相关文章

      网友评论

          本文标题:Linux.在centos中安装字体

          本文链接:https://www.haomeiwen.com/subject/smlrhqtx.html