Ubuntu flash中文显示乱码(方块)
发布:hx263 | 发布时间: 2009年3月29日安装好Ubuntu 8.04还是8。10后,发现Firefox里Flash播放器无法正常显示中文,凡是有中文的地方都被方块代替了。
解决方法如下
打开终端,输入以下命令:
cd /etc/fonts/conf.d/
sudo cp 49-sansserif.conf 49-sansserif.conf_backup
sudo rm 49-sansserif.conf
以上命令的功能是先备份49-sansserif.conf文件,再删除,经测试后有效。
===============================================================================
ubuntu flash乱码
另外如果出现flash乱码现象,可以用以下两条命令解决:
sudo cp /etc/fonts/conf.d/49-sansserif.conf /etc/fonts/conf.d/49-sansserif.conf.bak
sudo rm /etc/fonts/conf.d/49-sansserif.conf
对于linux下使用ff的朋友,一定要注意字体是否很合适,不合适的字体会严重降低ff的绘制能力,尽量不能使用压缩的字体并且考虑使用ttf字体,推荐文泉译正黑字体http://wenq.org/?ZenHei
打开终端,执行:
cd /etc/fonts/conf.d/
为了安全,备份一下字体配置文件:
sudo cp 49-sansserif.conf 49-sansserif.conf_backup
以root身份打开:
sudo gedit ./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>
如上所示,将其中的第1、2、4个<string>后面的sans-serif或者serif用你自己系统中支持中文的字体的名字代替,注意字体名字的大小写
比如:我的系统中安装了wqy-zenhei.ttf,我则用wqy-zenhei代替上述所说的字段:
我的系统修改后的文件如下所示(注意:个人根据自己的实际情况修改)
<?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>wqy-zenhei</string>
</test>
<test qual="all" name="family" compare="not_eq">
<string>wqy-zenhei</string>
</test>
<test qual="all" name="family" compare="not_eq">
<string>monospace</string>
</test>
<edit name="family" mode="append_last">
<string>wqy-zenhei</string>
</edit>
</match>
</fontconfig>
- 相关文章:
bubakup:全盘备份Ubuntu Linux系统工具 (2009-3-20 11:42:18)
Ubuntu中UFW防火墙的安装及使用 (2009-3-20 11:9:38)
Ubuntu 8.10 Server 安装步骤及 web 服务配置 (2009-3-1 20:4:27)
Ubuntu服务器设置指南 (2009-3-1 19:54:17)
基本装好ubuntu服务器版总结下 (2009-2-28 3:22:9)
ubuntu服务器版安装桌面 (2009-2-28 0:31:8)
Ubuntu电源管理问题的说明和解决方案 (2009-2-26 15:26:40)
安装Plone(Ubuntu版) (2009-2-14 0:38:33)
在ubuntu中以管理员身份打开文件夹或文件设置方法 (2009-2-3 19:38:8)
支付宝针对 Linux 下 Firefox 的安全控件 (2009-2-3 19:32:36)
发表评论
◎欢迎参与讨论,请在这里发表您的看法、交流您的观点。











