LinuxSir.cn,穿越时空的Linuxsir!

 找回密码
 注册
搜索
热搜: shell linux mysql
查看: 952|回复: 4

求一个.bashrc文件

[复制链接]
发表于 2009-11-19 15:09:11 | 显示全部楼层 |阅读模式
我用cooker源升级了kde到4.3.73,结果进不去了。出现lnusertemp等提示。有人说是.bashrc的问题。
哪位能传一个.bashrc上来,借用一下,谢谢!
发表于 2009-11-19 16:52:00 | 显示全部楼层

我刚装的2010,你看看

我刚装的2010,你看看能用不?
# .bashrc

# User specific aliases and functions

# Source global definitions
if [ -f /etc/bashrc ]; then
        . /etc/bashrc
fi


/etc/bashrc如下:


# /etc/bashrc

# System wide functions and aliases
# Environment stuff goes in /etc/profile

# It's NOT good idea to change this file unless you know what you
# are doing. Much better way is to create custom.sh shell script in
# /etc/profile.d/ to make custom changes to environment. This will
# prevent need for merging in future updates.

# By default, we want this to get set.
# Even for non-interactive, non-login shells.
if [ "`id -gn`" = "`id -un`" -a `id -u` -gt 99 ]; then
        umask 002
else
        umask 022
fi

# are we an interactive shell?
if [ "$PS1" ]; then
    case $TERM in
        xterm*)
            PROMPT_COMMAND='echo -ne "\033]0;${USER}@${HOSTNAME%%.*}{PWD/#$HOME/~}"; echo -ne "\007"'
            ;;
        screen)
            PROMPT_COMMAND='echo -ne "\033_${USER}@${HOSTNAME%%.*}{PWD/#$HOME/~}"; echo -ne "\033\\"'
            ;;
        *)
            ;;
    esac
    [ "$PS1" = "\\s-\\v\\\$ " ] && PS1="[\u@\h \W]\\$ "
    # You might want to have e.g. tty in prompt (e.g. more virtual machines)
    # and console windows
    # If you want to do so, just add e.g.
    # if [ "$PS1" ]; then
    #   PS1="[\u@\h:\l \W]\\$ "
    # fi
    # to your custom modification shell script in /etc/profile.d/ directory
   
    if [ -z "$loginsh" ]; then # We're not a login shell
        # Not all scripts in profile.d are compatible with other shells
        # TODO: make the scripts compatible or check the running shell by
        # themselves.
        if [ -n "${BASH_VERSION}${KSH_VERSION}${ZSH_VERSION}" ]; then
            for i in /etc/profile.d/*.sh; do
                if [ -r $i ]; then
                    . $i
                fi
            done
            unset i
        fi
    fi
fi

unset loginsh
回复 支持 反对

使用道具 举报

发表于 2009-11-19 21:13:58 | 显示全部楼层
认为这个文件有问题就备份删除了测试。或都随便新建一个用户,登录一次会自动重建的。
回复 支持 反对

使用道具 举报

 楼主| 发表于 2009-11-20 09:28:53 | 显示全部楼层
感谢crys.
感谢tlze.
对,我新建一用户试试。
回复 支持 反对

使用道具 举报

发表于 2009-11-20 11:10:47 | 显示全部楼层
那不如直接从/etc/skel 复制
回复 支持 反对

使用道具 举报

您需要登录后才可以回帖 登录 | 注册

本版积分规则

快速回复 返回顶部 返回列表