1、網頁中的flash亂碼:
ubuntu默認瀏覽器是Firefox,可是Ubuntu默認不安裝像flash這種帶版權的軟件,因此當你瀏覽像youku或網頁播放器時,這種帶有 flash的網頁,firefox會提示你安裝缺失插件,選擇安裝Flash插件後確實是能夠顯示flash了,不過你會發現,在flash上面的中文都是方框!注意:建議選擇adobe的插件,這是因爲兼容性。
解決方法:
終端中輸入:
cd /etc/fonts/conf.d/
sudo cp 49-sansserif.conf 49-sansserif.conf_backup
sudo gedit ./49-sansserif.conf
將其中的第一、二、4個後面的sans-serif用UTF-8代替,固然不備份也無妨。
好比:
<match target=」pattern」>
<test qual=」all」 name=」family」 compare=」not_eq」>
<string>UTF-8</string>
</test>
<test qual=」all」 name=」family」 compare=」not_eq」>
<string>UTF-8</string>
</test>
<test qual=」all」 name=」family」 compare=」not_eq」>
<string>monospace</string>
</test>
<edit name=」family」 mode=」append_last」>
<string>UTF-8</string>
</edit>
</match>
2、Rhythmbox中的歌曲信息亂碼:
首先說明一點:在ubuntu下,音頻格式只有mp3會出現標籤亂碼。
先安裝mutagen:
sudo apt-get install python-mutagen
而後轉到你的MP3目錄,例如個人歌曲放一個音樂文件夾則輸入:
cd /home/"my music"/
執行以全命令進行轉換:
mid3iconv -e GBK *.mp3
注意:若文件夾my music下還有自文件夾,如還有「劉德華」,「english」等,
則輸入:
mid3iconv -e GBK */*.mp3
則將包含全部子文件夾中的mp3格式。
再用Rhythmbox從新導入歌曲文件夾就好了!
3、文本文件中的亂碼:
提供兩種方案:
1》編輯「配置編輯器」
首先在主菜單中選中「配置編輯器」,使其顯身。
然後在應用程序菜單中選擇「系統工具」>「配置編輯器」
打開後按如下路徑
apps>gedit-2>preferences>encodings
編輯auto_detected,在裏面加入GB2312,GBK等中文編碼便可。
2》直接修改Ubuntu默認編碼環境爲GBK
這樣就和windows環境下差很少了。
方法以下:
一、打開
sudo gedit /var/lib/locales/supported.d/local
在此文件中,添加一行
zh_CN.GBK GBK
二、 sudo locale-gen
會看到系統下載幾個文件。
三、修改/etc/environment
sudo gedit /etc/environment
PATH="/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games"
LANG="zh_CN.UTF-8"
LANGUAGE="zh_CN:zh"
添加
LC_ALL="zh_CN.GBK"
四、接下來重啓機器就好了
4、pdf亂碼:
ubuntu自帶的文檔閱讀器,即Evince查看中文,會出現亂碼與排列混亂。
解決方法以下:
終端中輸入
sudo apt-get install poppler-data
執行完後,從新打開pdf文件後中文能正常顯示了。
5、wine亂碼:
一、首先從windows系統中拷貝simsun.ttc字體進入~/.wine/drive_c/windows/Fonts/
具體方法是在終端中輸入:
gnome-open .wine/drive_c/windows/Fonts
將會自動搜索並打開此文件夾。
再將字體複製進去。
二、修改註冊表文件~/.wine/system.reg。
具體方法是在終端中輸入:
cd .wine
gedit system.reg
將[Software\\Microsoft\\Windows NT\\CurrentVersion\\FontSubstitutes] 中的:
「MS Shell Dlg」=」Tahoma」
「MS Shell Dlg 2″=」Tahoma」
改成:
「MS Shell Dlg」=」SimSun」
「MS Shell Dlg 2″=」SimSun」
註釋:固然你複製其它字體,方法相似。
python