您的位置:首页 > 其它

Ubuntu-Firefox安装Adobe Flash后乱码

2009-03-07 12:17 387 查看
解决Ubuntu火狐Firefox安张adobe Flash插件后播放flash乱码问题

方法一:

代码:

sudo gedit /etc/fonts/conf.d/49-sansserif.conf

找到最后第4行的 sans-serif 替换为 文泉驿正黑,即可解决。

代码:

<string>文泉驿正黑</string>

保存即可,重启firefox,flash乱码解决了。

修改后的内容为:

<?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>文泉驿正黑</string>

</edit>

</match>

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