1.安装fontconfig
yum -y install fontconfig
2.创建chinesem目录
/usr/shared/fonts目录下新建一个目录chinese
#cd /usr/share/fonts
#mkdir chinese
3.上传如下两个文件到目录/usr/share/fonts/chinese
simhei.ttf
simsun.ttc
宋体和黑体
这两个文件在windows下的C:\Windows\fonts下可以找到
cp /tmp/simhei.ttf /usr/share/fonts/chinese/
cp /tmp/simsun.ttc /usr/share/fonts/chinese/
4.修改权限
#chmod -R 755 /usr/share/fonts/chinese
5.安装ttmkfdir
yum -y install ttmkfdir
6.执行如下命令
ttmkfdir -e /usr/share/X11/fonts/encodings/encodings.dir
7.修改/etc/fonts/fonts.conf文件
vi /etc/fonts/fonts.conf
<!-- Font directory list --> <dir>/usr/share/fonts</dir> <dir>/usr/share/X11/fonts/Type1</dir> <dir>/usr/share/X11/fonts/TTF</dir> <dir>/usr/local/share/fonts</dir> <dir>/usr/share/fonts/chinese</dir> <dir prefix="xdg">fonts</dir> <!-- the following element will be removed in the future --> <dir>~/.fonts</dir>
8.执行如下命令
#fc-cache
9.查看
[root@hxl-hangzhou-db-backup001 fonts]# fc-list /usr/share/fonts/dejavu/DejaVuSansCondensed-Oblique.ttf: DejaVu Sans,DejaVu Sans Condensed:style=Condensed Oblique,Oblique /usr/share/fonts/dejavu/DejaVuSansCondensed-Bold.ttf: DejaVu Sans,DejaVu Sans Condensed:style=Condensed Bold,Bold /usr/share/fonts/chinese/simsun.ttc: SimSun,宋体:style=Regular,常规 /usr/share/fonts/dejavu/DejaVuSans.ttf: DejaVu Sans:style=Book /usr/share/fonts/chinese/simsun.ttc: NSimSun,新宋体:style=Regular,常规 /usr/share/fonts/dejavu/DejaVuSans-Bold.ttf: DejaVu Sans:style=Bold /usr/share/fonts/dejavu/DejaVuSansCondensed.ttf: DejaVu Sans,DejaVu Sans Condensed:style=Condensed,Book /usr/share/fonts/dejavu/DejaVuSans-ExtraLight.ttf: DejaVu Sans,DejaVu Sans Light:style=ExtraLight /usr/share/fonts/chinese/simhei.ttf: SimHei:style=Normal /usr/share/fonts/dejavu/DejaVuSansCondensed-BoldOblique.ttf: DejaVu Sans,DejaVu Sans Condensed:style=Condensed Bold Oblique,Bold Oblique /usr/share/fonts/dejavu/DejaVuSans-Oblique.ttf: DejaVu Sans:style=Oblique /usr/share/fonts/dejavu/DejaVuSans-BoldOblique.ttf: DejaVu Sans:style=Bold Oblique
标签:style,Sans,fonts,share,centos7,中文字体,DejaVu,usr,安装 From: https://www.cnblogs.com/hxlasky/p/18217226