bash-4.2$ bash: /home/test/.bashrc: 权限不够

时间:2024-11-16 08:00:04

原因:造成出现这个错误的原因有挺多的.我的是因为修改了用户的uid然后莫名其妙的就出现了 bash-4.2$ 

不过不要着急,下面我告诉你我解决的过程.

1.切换root用户.然后执行  #cd /home/  && ls -la    #先看你的用户的所属者跟所属组有没有变跟.如果变更了看下面2如果没变更过的看3.

2.#chown   -R  xxx:xxx    xxx#变更过就得重新把所属者跟所属组还给这个xxx用户.

3.#vim  /home/xxx/.bash_profile  在最后加上一条

# .bash_profile

# Get the aliases and functions
if [ -f ~/.bashrc ]; then
    . ~/.bashrc
fi

# User specific environment and startup programs

PATH=$PATH:$HOME/.local/bin:$HOME/bin

export PATH
export PS1='[\u@\h \w]'             #加上它.

#source .bash_profile           #然后退出重新登录