我想在我FC 2上开机就启动fcitx输入法

我想在我FC 2上开机就启动fcitx输入法

如题,我打算用5模式即图形界面开机启动输入法,于是在/etc/rc5.d里新加了一个S100local-fcitx的脚本链接,并在/etc/rc.d/init.d里加入了名为local-fcitx的脚本,可开机时显示fcitx的段错误,当登录后打开终端可以执行此脚本并正常启动了输入法,为什么呢?
复制内容到剪贴板
代码:
#!/bin/sh
#
# This script will be executed *after* all the other init scripts.
# You can put your own initialization stuff in here if you don't
# want to do the full Sys V style init stuff.

touch /var/lock/subsys/local

touch /var/lock/subsys/fcitxlog
echo "*************fcitx****************"
# start input for chinese with  fcitx
if [ -f /usr/local/fcitx/bin/fcitx ] ; then
/usr/local/fcitx/bin/fcitx


fi
      
fcitx.org 上有详细的中文介绍      
太好了,我去看看,可为什么我用这种方法系统报段错误呢?      
ldd /usr/local/fcitx/bin/fcitx
有什么提示?