|
发表于 2004-8-14 12:45:12
|
显示全部楼层
你在文本模式下运行ls -a 一般可以看到,如果真的没有的话,自己建一个试试
[root@chenlinuxsir root]# cat .Xclients
#! /bin/bash
# Created by Red Hat Desktop Switcher
if [ -e "$HOME/.Xclients-$HOSTNAME$DISPLAY" ]; then
exec $HOME/.Xclients-$HOSTNAME$DISPLAY
else
exec $HOME/.Xclients-default
fi
[root@chenlinuxsir root]# cat .Xclients
#! /bin/bash
# Created by Red Hat Desktop Switcher
if [ -e "$HOME/.Xclients-$HOSTNAME$DISPLAY" ]; then
exec $HOME/.Xclients-$HOSTNAME$DISPLAY
else
exec $HOME/.Xclients-default
fi
[root@chenlinuxsir root]# cat .Xclients-default
#! /bin/bash
# Created by Red Hat Desktop Switcher
WMPATH="/usr/bin /opt/bin /usr/local/bin /usr/X11R6/bin"
for wm in $WMPATH ; do
[ -x $wm/startkde ] && exec $wm/startkde
done
exit 1 |
|