[问题]我想问一下,能不能能在英文系统下输入汉字??谢谢了
-
- 帖子: 33
- 注册时间: 2007-05-20 14:33
[问题]我想问一下,能不能能在英文系统下输入汉字??谢谢了
能不能能在英文系统下输入汉字?我已经安装了输入法,在中文系统下 可以输入汉字,在英文系统下面好像按ctrl和 空格 不能 调出 csim
谁 知道 帮我一下
谢谢大家了
谁 知道 帮我一下
谢谢大家了
-
- 帖子: 162
- 注册时间: 2005-04-09 7:23
- 来自: 云南
- 联系:
-
- 帖子: 26
- 注册时间: 2007-06-02 21:47
-
- 帖子: 849
- 注册时间: 2006-09-07 22:51
- 联系:
如果使用fctix的话这是我的例子:
代码: 全选
#!/bin/bash
cat<<eof>/etc/X11/Xsession.d/95xinput
#!/bin/bash
case \$LC_CTYPE in
*zh_CN*)
;;
*)
export LC_CTYPE="zh_CN.UTF-8";
export XMODIFIERS='@im=fcitx';
export GTK_IM_MODULE="fcitx" ;
;;
esac
if [ \$(ps aux|grep -v grep |grep fcitx |cut -c 66-70) == "fcitx" ];then
echo "fcitx is runing "
else
fcitx
fi
eof
chmod +x /etc/X11/Xsession.d/95xinput
-
- 帖子: 8
- 注册时间: 2007-04-04 9:18
- leeaman
- 帖子: 30702
- 注册时间: 2007-02-02 18:14
- 系统: debian sid
-
- 帖子: 39
- 注册时间: 2007-05-17 16:24
按照如下方法,应该没问题的,我就是这样的:
Chinese Input for Ubuntu Hoary:
(version française) (http://forum.ubuntu-fr.org/viewtopic.ph ... 862#p17862)
1) install the following packages:
* scim
* scim-chinese
* scim-config-socket
* scim-frontend-socket
* scim-gtk2-immodule
* scim-server-socket
* scim-tables-zh (option)
* xfonts-intl-chinese
* xfonts-intl-chinese-big
* ttf-arphic-gbsn00lp
* ttf-arphic-gkai00mp
* ttf-arphic-bkai00mp
* ttf-arphic-bsmi00lp
accept all dependencies.
2) System -> Preferences -> Sessions
Startup Programs Tab -> Add Button
Startup Command: scim -d
Order: 80
3) Restart Gnome: CTRL+ALT+SUPPR
4) Open any software and press CTRL+SPACE to activate chinese input
------------------------------------------------------------------------------------------------------
IF not working you can as an alternative replace step 2) as follow:
2) alt+F2, gedit
type these few lines:
scim -d
export XMODIFIERS=@im=scim
export GTK_IM_MODULE=scim
gnome-session
Save them under your home directory name: .xsession
Then open a terminal and type:
$chmod +x .xsession
Chinese Input for Ubuntu Hoary:
(version française) (http://forum.ubuntu-fr.org/viewtopic.ph ... 862#p17862)
1) install the following packages:
* scim
* scim-chinese
* scim-config-socket
* scim-frontend-socket
* scim-gtk2-immodule
* scim-server-socket
* scim-tables-zh (option)
* xfonts-intl-chinese
* xfonts-intl-chinese-big
* ttf-arphic-gbsn00lp
* ttf-arphic-gkai00mp
* ttf-arphic-bkai00mp
* ttf-arphic-bsmi00lp
accept all dependencies.
2) System -> Preferences -> Sessions
Startup Programs Tab -> Add Button
Startup Command: scim -d
Order: 80
3) Restart Gnome: CTRL+ALT+SUPPR
4) Open any software and press CTRL+SPACE to activate chinese input
------------------------------------------------------------------------------------------------------
IF not working you can as an alternative replace step 2) as follow:
2) alt+F2, gedit
type these few lines:
scim -d
export XMODIFIERS=@im=scim
export GTK_IM_MODULE=scim
gnome-session
Save them under your home directory name: .xsession
Then open a terminal and type:
$chmod +x .xsession
-
- 帖子: 17
- 注册时间: 2007-06-29 22:57
-
- 帖子: 33
- 注册时间: 2007-05-20 14:33
-
- 帖子: 26
- 注册时间: 2007-06-02 21:47
重装以后,又不能在英文系统中使用SCIM中文输入法了,后来按照以上办法一步步做居然成功了,太感谢您了。likey 写了:按照如下方法,应该没问题的,我就是这样的:
Chinese Input for Ubuntu Hoary:
(version française) (http://forum.ubuntu-fr.org/viewtopic.ph ... 862#p17862)
1) install the following packages:
* scim
* scim-chinese
* scim-config-socket
* scim-frontend-socket
* scim-gtk2-immodule
* scim-server-socket
* scim-tables-zh (option)
* xfonts-intl-chinese
* xfonts-intl-chinese-big
* ttf-arphic-gbsn00lp
* ttf-arphic-gkai00mp
* ttf-arphic-bkai00mp
* ttf-arphic-bsmi00lp
accept all dependencies.
2) System -> Preferences -> Sessions
Startup Programs Tab -> Add Button
Startup Command: scim -d
Order: 80
3) Restart Gnome: CTRL+ALT+SUPPR
4) Open any software and press CTRL+SPACE to activate chinese input
------------------------------------------------------------------------------------------------------
IF not working you can as an alternative replace step 2) as follow:
2) alt+F2, gedit
type these few lines:
scim -d
export XMODIFIERS=@im=scim
export GTK_IM_MODULE=scim
gnome-session
Save them under your home directory name: .xsession
Then open a terminal and type:
$chmod +x .xsession
-
- 帖子: 26
- 注册时间: 2007-06-02 21:47