Debian 安装中文字体
在使用node-canvas
的时候,遇到中文字会显示框框。
了解了一下,应该是字体问题,安装一个中文字体应该就没问题了!
Linux的字体路径在/usr/share/fonts/
1.例如在Window机器上拷贝微软雅黑字体到一个目录上,利用pscp上传到服务器上(cmd执行)
pscp -r C:\Users\Administrator\Desktop\chinese root@*.*.*.*:/usr/share/fonts
上传成功后,/usr/share/fonts/
会多一个文件夹chinese
。
2.建立字体缓存
# mkfontscale (如果提示 mkfontscale: command not found,则需要安装# apt-get install ttf-mscorefonts-installer)
# mkfontdir
# fc-cache -fv (如果提示 fc-cache: command not found,则需要安装# apt-get install fontconfig)
3.重启机器
# reboot