随笔-167  评论-8  文章-0  trackbacks-0

1. 到scim官方,或者(http://mirror.lzu.edu.cn/software/scim)下载scim-1.4.7.tar.gz和scim-pinyin-0.5.91-i686-1bur.tgz

2. 安装scim和scim-pinyin(如果不喜欢智能拼音,到官方下载其他的,这里安装比较关键的是scim,而不是scim-pinyin)

编译安装scim

$ tar zxf scim-1.4.7.tar.gz
$ cd scim-1.4.7
$ ./configure –prefix=/usr
$ make
$ make install

直接安装scim-pinyin(当然,你也可以直接下载源代码,进入源代码,自己编译,编译步骤执行 “./configure; make; make install” 即可)
$ installpkg scim-pinyin-0.5.91-i686-1bur.tgz

3.修改/etc/profile.d/lang.sh
export LANG=zh_CN.gb2312
export LC_CTYPE=zh_CN.gb2312
export G_BROKEN_FILENAME=zh_CN.gb2312

4. 在家目录下创建.xinitrc文件

增加以下内容,
$ vim ~/.xinitrc
scim -d &
export LANG=zh_CN.gb2312
export LC_CTYPE=zh_CN.gb2312
export XMODIFIERS=@im=SCIM
export GTK_IM_MODULE=SCIM
export QT_IM_MODULE=SCIM
startkde

5.建立~/.bash_profile
export LANG=zh_CN.gb2312

最后一行是启动桌面系统,修改为你自己的桌面启动方式即可,.xinitrc文件是startx的时候调用的,比如gnome-session,/etc/X11/xinit/xinitrc.xfce等,看看你桌面程序的启动命令

PS: mirror.lzu.edu.cn上的scim的1.4.5的tgz包可以再slackware 12.0下面直接使用,但在12.0下无法启动,建议按照上面的步骤编译安装。

3)鼠标滚轮的设置

[setup the wheel for 3 button mouse]

修改xconf

[modify /etc/X11/xorg.conf]

Section “InputDevice”

# Identifier and driver

Identifier “Mouse1″

Driver “mouse”

Option “Protocol” “IMPS/2″ <==修改这里[modify here]

Option “Device” “/dev/mouse”

Option “Buttons” “5″ <==添加这里 [add this line]

Option “ZAxisMapping” “4 5″ <==添加这里 [add this line]

posted on 2009-12-13 18:14 老马驿站 阅读(607) 评论(0)  编辑 收藏 引用 所属分类: linux