batch字体安装
1.字体的安装
1).将C:\WINDOWS\Fonts\msgothic.ttc
COPY 到BATCH服务器:/usr/share/fonts/zh_CN/TrueType目录中
2).执行以下命令:
在:/usr/share/fonts/zh_CN/TrueType目录中执行:
mkfontscale
mkfontdir
fc-cache
3).重启字体服务器
/etc/init.d/xfs restart
4).查看安装完字体后的日次报表的pdf文件字体是否正常
正式环境相关服务器
IP 主机名 模块
172.16.40.98 d-batch2 Report/Batch/Admin_Batch
172.16.40.99 d-batch3 Rollover/Report/Batch/Admin_Batch(standby)
查看是否为root用户
for x in 98 99 ;do echo ---$x---; scp /home/bak/msgothic.ttc $x:/usr/share/fonts/zh_CN/TrueType/; ssh 10.1.0.$x "cd /usr/share/fonts/zh_CN/TrueType/ && mkfontscale && mkfontdir && fc-cache && /etc/init.d/xfs restart && echo ---$x OK---"; done