[问题]ubuntu的中文输入怎么调出来,我不会弄?

系统安装、升级讨论
版面规则
我们都知道新人的确很菜,也喜欢抱怨,并且带有浓厚的Windows习惯,但既然在这里询问,我们就应该有责任帮助他们解决问题,而不是直接泼冷水、简单的否定或发表对解决问题没有任何帮助的帖子。乐于分享,以人为本,这正是Ubuntu的精神所在。
回复
xiang
帖子: 36
注册时间: 2005-11-28 10:43
来自: 北京

[问题]ubuntu的中文输入怎么调出来,我不会弄?

#1

帖子 xiang » 2005-12-21 12:41

rt
ubuntu是不是没有中文输入法啊?
duoxing
帖子: 122
注册时间: 2005-12-20 21:26

#2

帖子 duoxing » 2005-12-21 14:18

默认是没有的,你可以自己根据自己的爱好安装一个,现在比较常用的是fcitx和scim,我那里有相关的设置你感兴趣可以去看看。
http://www.cduhacker.com/duoxing/?action=show&id=4
panli
帖子: 22
注册时间: 2005-12-19 20:16

#3

帖子 panli » 2005-12-23 18:21

个人觉得fcitx好一点
duoxing
帖子: 122
注册时间: 2005-12-20 21:26

#4

帖子 duoxing » 2005-12-24 11:51

这个就是个人的爱好和习惯了,其实那两个都是很不错的。
DEMON
帖子: 18
注册时间: 2005-08-21 10:34

#5

帖子 DEMON » 2006-01-10 20:03

scim:

代码: 全选

sudo apt-get install scim scim-modules-socket scim-modules-table scim-pinyin scim-tables-zh scim-input-pad 
sudo sh -c " echo 'export XMODIFIERS=@im=SCIM ; 
export GTK_IM_MODULE="scim" ; scim -d ' > /etc/X11/Xsession.d/95xinput "
sudo chmod +755 /etc/X11/Xsession.d/95xinput

fcitx:

代码: 全选

sudo apt-get install fcitx
sudo sh -c " echo 'export XMODIFIERS=@im=fcitx ; export GTK_IM_MODULE="fcitx" ; fcitx ' > /etc/X11/Xsession.d/95xinput "
sudo chmod +755 /etc/X11/Xsession.d/95xinput
vicrly
帖子: 13
注册时间: 2006-02-22 0:18

#6

帖子 vicrly » 2006-02-23 13:57

萝卜白菜各有所爱啊!我喜欢用SCIM,另告诉各位菜菜,

代码: 全选

sudo apt-get install scim scim-modules-socket scim-modules-table scim-pinyin scim-tables-zh scim-input-pad
sudo sh -c " echo 'export XMODIFIERS=@im=SCIM ;
export GTK_IM_MODULE="scim" ; scim -d ' > /etc/X11/Xsession.d/95xinput "
sudo chmod +755 /etc/X11/Xsession.d/95xinput 
也等于

代码: 全选

sudo apt-get install scim scim-modules-socket scim-modules-table scim-pinyin scim-tables-zh scim-input-pad
sudo gedit /etc/X11/Xsession.d/95xinput
拷贝如下代码到95xinput:
  • export XMODIFIERS=@im=SCIM ;
    export GTK_IM_MODULE="scim" ;
    scim -d
保存退出
再运行

代码: 全选

sudo chmod +755 /etc/X11/Xsession.d/95xinput
cnspy
帖子: 51
注册时间: 2005-07-13 9:06

re

#7

帖子 cnspy » 2006-03-21 23:42

Sorry, I have installed the fcitx but the ctrl+space does work under ubuntu 6.04.
头像
goldfox_79
帖子: 2004
注册时间: 2005-10-16 8:26
来自: 地球

Re: re

#8

帖子 goldfox_79 » 2006-03-22 0:30

cnspy 写了:Sorry, I have installed the fcitx but the ctrl+space does work under ubuntu 6.04.
安装完fcitx之后是否执行了楼上几位给出的命令。
treedreamer
帖子: 12
注册时间: 2006-05-30 14:25
联系:

[问题]why does this happen?

#9

帖子 treedreamer » 2006-07-13 0:24

when I tried the last step : sudo chmod +755 /etc/X11/Xsession.d/95xinput,
I got this :
chmod : invalid mode '+755' .

now my question is : has anyone else ever met this kind of problem ? Could anyone give me some tips ?
thanks.
hgjcool
帖子: 68
注册时间: 2006-06-16 8:01

#10

帖子 hgjcool » 2006-07-13 15:39

为什么不管我是装SCIM 还是装fcitx
在运行
sudo chmod +755 /etc/X11/Xsession.d/95xinput
都出现

root@ubuntu:~# sudo chmod +755 /etc/X11/Xsession.d/95xinput
chmod: invalid mode: `+755'
Try `chmod --help' for more information.
lewbing
帖子: 2
注册时间: 2006-05-20 10:12

#11

帖子 lewbing » 2006-07-13 19:26

hgjcool 写了:为什么不管我是装SCIM 还是装fcitx
在运行
sudo chmod +755 /etc/X11/Xsession.d/95xinput
都出现

root@ubuntu:~# sudo chmod +755 /etc/X11/Xsession.d/95xinput
chmod: invalid mode: `+755'
Try `chmod --help' for more information.
你使用:chmod 755 /etc/X11/Xsession.d/95xinput,即可。
“+”是添加权限,可我试验多次仍然无法使用。只可以像这使用达到一样效果:chmod a+w+r /etc/X11/Xsession.d/95xinput达到一样的效果。

抱歉,我刚学过的Linux脚本命令忘的又差不多了,我是以前在Windows下使用模拟Linux学的,我现在得再次补回来。这些命令还是要经常用才能记住。具体chmod命令请参考相应手册。
回复