问题:
在root用户下终端显示,如图所示:
尝试退出登陆root用户依然不能解决
原因:
root主目录下缺失.bash_profile和.bashrc文件
Tip:
/etc/profile
: 此文件为系统的每个用户设置环境信息,当用户第一次登录时,该文件被执行.并从
/etc/profile
.d目录的配置文件中搜集shell的设置.
/etc/bashrc
: 为每一个运行
bash
shell的用户执行此文件.当
bash
shell被打开时,该文件被读取.
~/.bash_profile: 每个用户都可使用该文件输入专用于自己使用的shell信息,当用户登录时,该文件仅仅执行一次!默认情况下,他设置一些环境变量,执行用户的.bashrc文件.
~/.bashrc: 该文件包含专用于你的
bash
shell的
bash
信息,当登录时以及每次打开新的shell时,该该文件被读取.
~/.bash_logout: 当每次退出系统(退出
bash
shell)时,执行该文件.
另外,
/etc/profile
中设定的变量(全局)的可以作用于任何用户,而~/.bashrc等中设定的变量(局部)只能继承
/etc/profile
中的变量,他们是
"父子"
关系.
解决方法:
复制目录下的.bash_profile和.bashrc文件到/root目录下
-bash-4.2#cd /root -bash-4.2#source .bashrc
-bash-4.2#source .bash_profile
重新登陆root用户后问题解决!~
参考博客:https://blog.csdn.net/qq_37506868/article/details/79397223
https://www.cnblogs.com/triple-y/p/11107133.html
原文地址:https://www.cnblogs.com/ashjo009/p/12069469.html
时间: 2024-10-02 01:55:42