所谓发虚就是说字体的颜色偏淡,看起来很费眼,也不太正常。解决的方法有两个,第一是用文泉驿字体,这是最推荐的。如果您非要用Windows的字体或者AR PL ShanHeiSun 的话,那么以下的方法或许对您有效:
$sudo gedit /etc/firefox/firefoxrc
然后会出现以下文件:[code]# which /dev/dsp wrapper to use
FIREFOX_DSP="none"
# Note that "auto" and "esd" involve the use of esddsp, which
# is known to be buggy and to make Firefox unstable.
# See https://launchpad.net/malone/bugs/29760.[/code] 在里面加入:[code]MOZ_DISABLE_PANGO=1[/code] 使整个文件变成:[code]# which /dev/dsp wrapper to use
FIREFOX_DSP="none"
MOZ_DISABLE_PANGO=1
# Note that "auto" and "esd" involve the use of esddsp, which
# is known to be buggy and to make Firefox unstable.
# See https://launchpad.net/malone/bugs/29760.[/code] 就可以了。