在Linux下用Firefox浏覽有Flash的網頁時,經常碰到有些文字不能正常顯示,有些還可能顯示亂碼,比如Google 的在線音樂 <http://www.google.cn/music>播放音樂時,完全顯示不了文字。
解決方法很簡單,操作如下:
修改/etc/fonts/conf.d/49-sansserif.conf
<?xml version="1.0"?>
<!DOCTYPE fontconfig SYSTEM "fonts.dtd">
<fontconfig><!--If the font still has no generic name, add sans-serif--><match target="pattern">
<test qual="all" name="family" compare="not_eq">
<string>sans-serif</string>
</test>
<test qual="all" name="family" compare="not_eq">
<string>serif</string>
</test>
<test qual="all" name="family" compare="not_eq">
<string>monospace</string>
</test>
<edit name="family" mode="append_last">
<string>sans-serif</string>
</edit></match></fontconfig>
將上面的黃色背景的內容改為:
<string>sans</string>
保存一下,在firefox裡刷新一下,問題就解決了。
對Fedora和Ubuntu 都適用。
終於可以安逸的收聽Google的音樂了~
over~
GOOD