红联Linux门户
Linux帮助

ubuntu字体设置像Windows字体

发布时间:2016-04-13 15:32:59来源:linux网站作者:dy200811

1.安装字体
sudo apt-get install ttf-mscorefonts-installer #微软字体 
sudo apt-get install xfonts-wqy  #文泉驿-点阵宋体 
cd ~ 
wget http://www.stchman.com/tools/MS_fonts/tahoma.zip #Tahoma 字体 
sudo unzip -d /usr/share/fonts/truetype/msttcorefonts ~/tahoma.zip 
sudo fc-cache -f -v 
rm -f ~/tahoma.zip 
sudo fc-cache -f -s -v   #刷新字体缓存 


2.进入 “Advanced settings" 设置(如果没有安装,执行 sudo apt-get install gnome-tweak-tool)

如下设置:

ubuntu字体设置像Windows字体


3.配置:-请->参考链接(http://wiki.ubuntu.com.cn/%E5%AD%97%E4%BD%93)

注意使用文泉驿的视觉习惯工具把网页上的英文和中文字体都调整清晰,点 Create, 按说明保存好。

本人调的是 Tahoma 第一位,wenquanyi  bitmap 第二位, 这样英文和中文都没问题。


4.上一步配置对 Firefox 和 Thunderbird 无效, 再设置 ~/.fonts.conf, 在 <fontconfig> 中加入:

<match target="font"> 
<edit mode="assign" name="autohint"> 
<bool>false</bool> 
</edit> 
</match> 
<match target="font"> 
<edit mode="assign" name="hinting"> 
<bool>true</bool> 
</edit> 
</match> 
<match target="font"> 
<edit mode="assign" name="hintstyle"> 
<const>hintfull</const> 
</edit> 
</match> 
<match target="font"> 
<edit mode="assign" name="antialias"> 
<bool>false</bool> 
</edit> 
</match> 
<!-- 大字体的时候启用抗锯齿 --> 
<match target="font" > 
<test name="size" qual="any" compare="more"> 
<double>12</double> 
</test> 
<edit name="antialias" mode="assign"> 
<bool>true</bool> 
</edit> 
</match> 
<match target="font" > 
<test name="pixelsize" qual="any" compare="more"> 
<double>16</double> 
</test> 
<edit name="antialias" mode="assign"> 
<bool>true</bool> 
</edit> 
</match> 


5. 登出 或 重启系统 就可看到完整的效果(由于图片受到压缩,请在图片上点右键,在新窗口中查看)

ubuntu字体设置像Windows字体


本文永久更新地址:http://www.linuxdiyf.com/linux/19751.html