从Windows拷贝字体
Windows字体目录为C:\Windows\Fonts\,将需要的字体文件拷贝到Linux中,假设放置在/home目录下。
CentOS字体所在目录为/usr/share/fonts,在该目录下新建文件夹chinese,
su root
mkdir /usr/share/fonts/chinese
cd /usr/share/fonts/chinese
yum install mkfontscale
yum install fontconfig
mkfontscale
mkfontdir
fc-cache -fv
重启系统或者source /etc/profile。
此时,使用fc-list :lang=zh即可看到安装的中文字体。
为使系统所有用户都能使用该字体,需要给字体访问权限:
chmod -R 755 *.tff
chmod -R 755 *.TFF