[问题]求助,大家能否将6.06的/etc/gdm/Xsession文件用附件发给我??

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

[问题]求助,大家能否将6.06的/etc/gdm/Xsession文件用附件发给我??

#1

帖子 once375ml » 2006-10-26 1:02

我按照 下面这个帖子的方法想设置scim自动启动
但是现在进不了系统了,每次都只能进安全模式,向大家求助,能否将6.06的/etc/gdm/Xsession文件用附件发出来,我没有备份

还有替换的命令是什么?


# use run-parts to source every file in the session directory; we source
# instead of executing so that the variables and functions defined above
# are available to the scripts, and so that they can pass variables to each
# other
把以下的修改成
SESSIONFILES=$(run_parts $SYSSESSIONDIR)
if [ -n “$SESSIONFILES” ]; then
export XMODIFIERS=”@im=SCIM”
export GTK_IM_MODULE=”scim”
scim -d
for SESSIONFILE in $SESSIONFILES; do
. $SESSIONFILE
done
fi
重新启动X看看能不能启动SCIM



这是我现在的,有什么地方错了吗?



# use run-parts to source every file in the session directory; we source
# instead of executing so that the variables and functions defined above
# are available to the scripts, and so that they can pass variables to each
# other
SESSIONFILES=$(run_parts $SYSSESSIONDIR)
if [ -n “$SESSIONFILES” ]; then
for SESSIONFILE in $SESSIONFILES; do
. $SESSIONFILE
done
fi
回复