loves 发表于 2003-8-20 12:51:10

急救:谁能贴一下/etc/profile这个文件

我在用vim编辑这个文件时,误用了:X这个命令,设置了密码,糟的是我不知道怎么弄掉密码,更糟的是我忘了密码,哪位大哥,帮帮忙,贴一下你的profile,多谢

mozilla 发表于 2003-8-20 17:49:15

redhat9的:

# /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

loves 发表于 2003-8-20 21:47:37

多谢多谢
页: [1]
查看完整版本: 急救:谁能贴一下/etc/profile这个文件