wine的乱码解决

wine运行程序的时候,默认是Tahoma字体,用Tahoma是无法显示中文的。因此,需要使用中文字体,例如simsun。

1. 拷贝simsun.ttc到/usr/share/wine/fonts
2.修改~/.wine/system.reg
搜索: FontSubstitutes
找到的行应该是:[Software//Microsoft//Windows NT//CurrentVersion//FontSubstitutes]
将其中的:
“MS Shell Dlg”=”Tahoma”
“MS Shell Dlg 2″=”Tahoma”
改为:
“MS Shell Dlg”=”SimSun”
“MS Shell Dlg 2″=”SimSun”

但是这个时候,还是会出现乱码的问题,只能下手更狠一些,将tahoma.ttf和tahomabd.ttf删掉。
这样,windows程序菜单就可以正常显示了;-)

$ env LANG="zh_CN.UTF-8" wine CAJViewer.exe

 

迅雷同样适用,原文

http://blog.163.com/zyh_lnx/blog/static/129066412200983033854925/

你可能感兴趣的:(windows,shell)