下面是如何安装字体
windows的字体在C:\Windows\Fonts下
linux的字体在./usr/share/fonts下,dejavu是默认的
创建 /usr/share/fonts/chinese 目录
bash
mkdir -p /usr/share/fonts/chinese
然后把 windows fonts 目录下的字体放入目录下
bash
mv fonts/* /usr/share/fonts/chinese/
然后执行如下命令让字体生效
bash
cd /usr/share/fonts/chinese
mkfontscale (需安装yum install mkfontscale)
fc-cache -fv (需安装 yum install fontconfig)
source /etc/profile
搞定!