|
I've installed my gentoo properly. And I was planning to install the scim to allow me input chinese characters. So I downloaded the source pack, extracted it, and did something as follow:
[code:1]
$su
#tar xzf ~/scim-0.9.2.tar.gz
#./configure
#make
#make check
#make install
[/code:1]
Then I downloaded the Pinyin binary package and did somethings as follow:
[code:1]
$su
#rpm2targz scim-chinese-0.2.7-1.i586.rpm
#mkdir t
#cd t
#tar xzf ../scim-chinese-0.2.7-1.i586.tar.gz
#cp -a etc/* /usr/local/etc
#cp -a usr/* /usr/local/
[/code:1]
I also downloaded the source data for Generic Table Input Method Server module and installed it.
[code:1]
$su
#tar xzf ~/scim-tables-0.3.3.tar.gz
#./configure
#make
#make install
[/code:1]
After that, I modified my .xinitrc with adding the following lines:
[code:1]
export XMODIFIERS="@im=scim"
scim -c simple -d
[/code:1]
I thought it would be fine, so I started my X system. I also saw the little keyboard icon appeared at the right of the taskbar. But when I started the KWrite and pressed Ctrl+Space, nothing happeded! Letters were still letters, not been changed into chinese characters.
I've tried to remove "scim -c simple -d" from the .xinitrc and run it in a term window. Everything seems fine, it said like:
[code:1]
$scim -c simple -d
Smart Common Input Method 0.9.2
Loading simple Config module ...
Creating backend ...
Loading Server module: pinyin ...
Loading Server Factory 0 ... : Failed
pinyin Server module is successfully loaded.
Loading Server module: rawcode ...
Loading Server Factory 0 ... : OK
rawcode Server module is successfully loaded.
Loading Server module: socket ...
Failed to load socket Server module.
Loading Server module: table ...
Loading Server Factory 0 ... : OK
Loading Server Factory 1 ... : OK
Loading Server Factory 2 ... : OK
Loading Server Factory 3 ... : OK
Loading Server Factory 4 ... : OK
Loading Server Factory 5 ... : OK
Loading Server Factory 6 ... : OK
Loading Server Factory 7 ... : OK
Loading Server Factory 8 ... : OK
Loading Server Factory 9 ... : OK
Loading Server Factory 10 ... : OK
Loading Server Factory 11 ... : OK
Loading Server Factory 12 ... : OK
Loading Server Factory 13 ... : OK
Loading Server Factory 14 ... : OK
Loading Server Factory 15 ... : OK
table Server module is successfully loaded.
Loading x11 FrontEnd module ...
Starting SCIM as daemon ...
$
[/code:1]
But it didn't become any better. I don't understand what is the relationship between "pinyin Server module is successfully loaded" and "Loading Server Factory 0 ... : Failed".
Did I do anything wrong? Or something else must to be configured? |
|