EasyEclipse的console中输出中文是乱码,原因是它自带的jre不是多语言版本,从多语言版本的JDK里复制charsets.jar文件到%Easy_Eclipse_Home%\jre\jre\lib目录下,重新启动一下EasyEclipse就好了。
Windows XP下安装MySQL遇到的两个问题
原来的安装用的是直接解压zip包的方式,安装情况如下:
1. 安装目录为C:\mysql-4.1.22-win32
2. my.ini从my-medium.ini修改而来,放在了C:\WINDOWS下
3. 安装Windows服务用的命令是 mysqld-nt --install
4. net start MySQL启动服务没有问题
但用MySQL Administrator工具连接时总是先弹出一个对话框,报告
Either the server service or the configuration file could not be found. Startup variables and service section are therefore disalbed.
点“确定”后才进入主界面,正如它所说,Service Control和Startup Variables功能都被禁用了,界面上有红色的提示信息
换用msi安装包,重新安装MySQL,目录还是选择C:\mysql-4.1.22-win32(除了data目录之外,其他目录都已删除),最后配置实例时出现无法启动服务的问题。尝试逐个关闭my.ini中选项的方法,试验到底是那个选项导致不能启动。最后发现是innodb_log_file_size这个选项的问题。原来实际的log文件ib_logfile0和ib_logfile1的大小是5M,是由刚才的那个my.ini(即有zip包中my-medium.ini手工修改而来的)指定的,而现在的my.ini(由MySQL Server Instance Config Wizard生成)中同样的选项指定的却是17M,结果导致MySQL无法启动。解决办法是要么删除原来的那两个log文件,要么修改innodb_log_file_size。
现在可以正常启动MySQL服务,MySQL Administrator也可以正常使用。在注册表里查看MySQL Server Instance Config Wizard生成的MySQL服务,发现ImagePath的值是
How to add a new language to 770/N800
Adding a new language to 770/N800 is very simple. Once done, you can choose it from the "Device language" list of the "Language & region" applet.
1. install extra locales, got from http://garage.maemo.org/projects/locales-extras
2. add the country code to gconf configuration database, e.g.
# gconftool-2 --set /apps/osso/applet/languageregional/available_languages \
--type=list --list-type=string "[zh_CN]"
an alternative way to do this is using gconf-editor.
of course, the text of UI need to be translated to this new language.
移植StarDict到maemo平台 (1) 准备工作
参考maemo 3.0 Porting Guide 的 Porting existing application to maemo 3.0 一节。
StarDict的源码取自Ubuntu Dapper,版本2.4.5-1.1
1. 由于要使用Hildon UI,所以可以去掉libgnomeui, libbonobo2, liborbit2。查看configure.in后发现可以使用configure的一个选项 --disable-gnome-support。修改configure.in,在加入对hildon-libs 和 libosso的检测,PKG_CHECK_MODULES(STARDICT, [gtk+-2.0 hildon-libs libosso])
2. 原来的help文件不适用于maemo,所以help目录不需要处理。修改Makefile.am,从SUBDIRS列表里删去help,还需要修改configure.in,从AC_OUTPUT列表里删去help及其子目录的Makefile
3. 执行autogen.sh,生成新的configure脚本
4. 修改debian/rules文件中调用configure脚本那一行,加上 --disable-gnome-support
5. 移去debian/control里对 libgnomeui-dev, scrollkeeper, libbonobo2-dev, liborbit2-dev 的依赖,修改Section为user/utils
6. 现在可以用dpkg-buildpackage命令编译了。
7. 为了能够正常显示英语音标等符号,还需要ttf-thryomanes字体。