ubuntu使用windows字体设置

  • Post author:
  • Post category:其他


转自 https://blog.csdn.net/ranweizheng/article/details/82993081

本篇文章主要介绍怎样在ubuntu系统中安装和windows相同的字体!

ubuntu18.04亲测有效

第一步:从 Windows 系统下字体文件夹(C:\Windows\Fonts) ,拷贝如下文件到当前Ubuntu用户目录 /usr/software/fonts/Fonts

宋体:simsunb.ttf 和 simsun.ttc
微软雅黑:msyhbd.ttf
Courier New:courbd.ttf、courbi.ttf、couri.ttf 和 cour.ttf
WPS Office 所需字体:wingding.ttf、webdings.ttf、symbol.ttf、WINGDNG3.TTF、WINGDNG2.TTF、MTExtra.ttf

如果还需要其他字体可以自行百度,查找对应文件。

第二步:新建字体存放目录 windows-font

sudo mkdir /usr/share/fonts/truetype/windows-font

第三步:拷贝字体到window-font目录下

sudo cp /usr/software/fonts/Fonts/* /usr/share/fonts/truetype/windows-font

第四步:修改权限,并更新字体缓存

sudo chmod -R 777  /usr/share/fonts/truetype/windows-font
cd /usr/share/fonts/truetype/windows-font
sudo mkfontscale
sudo mkfontdir
sudo fc-cache -fv

第五步:重启系统,如果没出错的话,打开WPS等软件都会发现字体发生了变化!