本人使用的是Windows 10下的WSL,Linux版本是Ubuntu18.04,系统原始是没有安装任何字体的,mkfontscale、mkfontdir
和fc-cache
命令也是不存在的,直接运行会直接提示:命令未找到(mkfontscale: command not found
)。
网上的大部分教程都只介绍怎么安装字体,而没有介绍如何安装mkfontscale
和mkfontdir
这两个命令。所以接下来首先介绍如何安装mkfontscale
和mkfontdir
命令,然后介绍如何安装(中文)字体。
mkfontscale mkfontdir
和fc-cache
命令如果运行mkfontscale命令时终端提示mkfontscale: command not found
,则需要首先安装这个命令,安装方法如下:
# 使mkfontscale和mkfontdir命令正常运行
sudo apt-get install ttf-mscorefonts-installer
# 使fc-cache命令正常运行
sudo apt-get install fontconfig
# 使mkfontscale和mkfontdir命令正常运行
yum install mkfontscale
# 使fc-cache命令正常运行。如果提示 fc-cache: command not found
yum install fontconfig
如果系统中没有中文字体,需要先行安装中文字体,在Ubuntu和Cent OS中的安装步骤如下:
/usr/share/fonts/myfonts
目录cd /usr/share/fonts/
# 如果fonts/目录不存在,则创建
mkdir fonts
mkdir myfonts
/usr/share/fonts/myfonts
目录下:sudo cp ~/myfonts/* /usr/share/fonts/myfonts/
# ~/myfonts/ 是保存字体的目录
cd /usr/share/fonts/
sudo chmod -R myfonts 755
mkfontscale
# 如果提示 mkfontscale: command not found
# 在Ubuntu下运行如下命令
# sudo apt-get install ttf-mscorefonts-installer
# 在cent os下运行如下命令
# yum install mkfontscale
mkfontdir
fc-cache -fv
# 如果提示 fc-cache: command not found
# 在Ubuntu下运行如下命令
# sudo apt-get install fontconfig
# 在cent os下运行如下命令
# yum install fontconfig
至此字体就安装成功了,如果需要安装其他字体,只需将字体拷贝到字体目录下,重新运行以上的命令即可。
手机扫一扫
移动阅读更方便
你可能感兴趣的文章