xwkp 发表于 2006-1-9 10:58:42

这下头大了,Profile出错(已解决)

可能是不小心修改了/etc/profile
结果重启运行时
在登陆框输入用户名密码后进入不了桌面
仍然停留在登陆状态
在控制抬下进入时提示错误

bash:id:command connot find
。。。。。。。。。。。。。。。。。。
bash:[:too many argument

输入所有的命令
都提示
xx:command connot find
救命啊
怎么样恢复profile啊

xwkp 发表于 2006-1-9 12:05:55

把/etc/profile贴出来大家看一下


# /etc/profile

# System wide environment and startup programs, for login setup
# Functions and aliases go in /etc/bashrc

pathmunge () {
        if ! echo $PATH | /bin/egrep -q "(^|:)$1($|:)" ; then
           if [ "$2" = "after" ] ; then
              PATH=$PATH:$1
           else
              PATH=$1:$PATH
           fi
        fi
}

# Path manipulation
#if [ `id -u` = 0 ]; then
        pathmunge /sbin
        pathmunge /usr/sbin
        pathmunge /usr/local/sbin
#fi

pathmunge /usr/X11R6/bin after

unset pathmunge

# No core files by default
ulimit -S -c 0 > /dev/null 2>&1

USER="`id -un`"
LOGNAME=$USER
MAIL="/var/spool/mail/$USER"

HOSTNAME=`/bin/hostname`
HISTSIZE=1000

if [ -z "$INPUTRC" -a ! -f "$HOME/.inputrc" ]; then
    INPUTRC=/etc/inputrc
fi

export PATH USER LOGNAME MAIL HOSTNAME HISTSIZE INPUTRC

for i in /etc/profile.d/*.sh ; do
    if [ -r "$i" ]; then
            . $i
    fi
done

unset i

export G_BROKEN_FILENAMES=true

xwkp 发表于 2006-1-9 12:09:29

vi 命令不能用
应该怎样修改profile呢

xwkp 发表于 2006-1-9 14:29:31

找一个profile的原件
放在windows分区
进入linux 的single 模式
各个命令都可以使用
将profile cp到/etc/profile 覆盖
重启
ok
不过还是不明白,里面语句好象并没有错!
页: [1]
查看完整版本: 这下头大了,Profile出错(已解决)