Centos 安装中文字体

centos下安装中文字体,将字体文件夹压缩成zip,上传服务器,unzip解压
假设解压后的字体文件夹为zhFonts,将文件夹拷贝到

1
cp -R ./zhFonts /usr/share/fonts/zhFonts

然后依次执行以下命令(如果输入命令报错,按注释内容安装)加载并刷新字体缓存

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
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

原文链接:https://xiaohost.com/11567.html,转载请注明出处。
0