|
发表于 2008-11-16 15:46:28
|
显示全部楼层
Post by chenmmi;1905283
欢迎大家一起来加入pcbsd用户。
安装配置输入法时, 注意pcbsd 默认使用PDM(pcbsd 版 KDM? )开启徒刑, 而不是startx. 而往上找到的很多scim 或 fcitx 的配置, 都是针对startx。
看一下下面的方法是否有用。
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
rill
半仙
注册时间: 2006-08-23
文章: 186
文章 发表于: Sat 2007-10-13 23:19:20 发表主题: fcitx问题 引用并回复
系统自动进入X桌面,对安装后的fcitx,我不知道如何正确启动,反复尝试总是失败,主要是 XMODIFIERS @im=fcitx 不能成功生效
最后,我放弃自动进入X桌面,
配置文件:/etc/ttys
#ttyv4 "/PCBSD/bin/pdm" xterm on secure
之后采用 .xinitrc 启动 kde
设置文件 .xinitrc
exec fcitx &
exec startkde
使用startx 启动 X
_________________
a software engineer
返回页首
阅览会员资料 发送站内信件
rill
半仙
注册时间: 2006-08-23
文章: 186
文章 发表于: Sun 2007-10-14 11:40:26 发表主题: 另一种让成功fcitx启动的方法 引用并回复
使用 kdm
配置
/usr/local/share/config/kdm/Xsession
配置样例如下:
[ -f /etc/xprofile ] && . /etc/xprofile
[ -f $HOME/.xprofile ] && . $HOME/.xprofile
export LANG=zh_CN.eucCN
export LC_CTYPE=zh_CN.eucCN
export XMODIFIERS=@im=fcitx
fcitx &
case $session in
还需要修改 /etc/ttys,用kdm替换pdm
ttyv1 "/usr/libexec/getty Pc" cons25 on secure
ttyv2 "/usr/libexec/getty Pc" cons25 on secure
ttyv3 "/usr/libexec/getty Pc" cons25 on secure
#ttyv4 "/PCBSD/bin/pdm" xterm on secure
ttyv4 "/usr/local/bin/kdm" xterm on secure
重新启动后发现 fcitx 工作良好 真不知道 pdm的配置文件在哪里 所以采用kdm启动系统
_________________
a software engineer
返回页首
阅览会员资料 发送站内信件
rill
半仙
注册时间: 2006-08-23
文章: 186
文章 发表于: Sun 2007-10-14 12:31:35 发表主题: 调试成功另一种方法 引用并回复
原来需要 Qt configure
Set "XIM Input Style" to "Over The Spot" using qtconfig.
or add this line to [General] section in ~/.qt/qtrc :
代码:
[General]
XIMInputStyle=Over The Spot
我的.xprofile 内容
代码:
export LANG=zh_CN.eucCN
export LC_CTYPE=zh_CN.eucCN
export XMODIFIERS=@im=fcitx
exec fcitx &
现在 pdm 而 kdm 都可以自动使用 fcitx |
|