找出配置文件 /root/.bash_profile进行修改:
1、进入root路径
2、.bash_profile是隐藏文件,用命令:ls -la 显示出来
3、vi .bash_profile 修改如下:
# .bash_profile
# Get the aliases and functions
if [ -f ~/.bashrc ]; then
. ~/.bashrc
fi
# User specific environment and startup programs
PATH=$PATH:$HOME/bin:/sbin:/usr/bin:/usr/sbin
export PATH
unset USERNAME
4、保存并退出
5、直接断电关机重启(因为shutdown命令如果执行。所以直接关机),重启后问题解决!