您的位置:首页 > 其它

Ubuntu操作系统Firefox浏览器Flash中文字符集乱码

2009-11-22 16:23 537 查看
Ubuntu下,Firefox播放含中文的flash时会出现乱码,这个问题在9.04中存在,在9.10依然存在。

解决方法有如下两种:

1.直接删除/etc/fonts/conf.d/49-sansserif.conf,删除前记得备份。

2.sudo gedit /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</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</string>
</edit>
</match>
</fontconfig>


乱码解决。
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: