linux中用户登录加载配置文件的过程
shell的类型(站在用户登录登录的角度)
登录式shell
- 正常通过某终端登录
- su - USERNAME
- su -l USERNAME
非登录式shell
- su USERNAME
- 图形终端下打开命令窗口
- 自动执行的shell脚本
用户登录时相关的bash配置文件
全局配置文件
- /etc/profile
- /etc/profile.d/*.sh
- /etc/bashrc
个人配置文件
- ~/.bsah_profile
- ~/.bashrc
profile类的文件: 设定环境变量 运行命令或脚本 bashrc类的文件: 设定本地变量 定义命令别名
用户登录时加载bash配置文件的过程
登录式shell加载配置文件过程
/etc/profile --> /etc/profile.d/*.sh --> ~/.bash_profile --> ~/.bashrc --> /etc/bashrc
非登录式shell加载配置文件过程
~/.bashrc --> /etc/bashrc --> /etc/profile.d/*.sh
相关推荐
tianhuak 2020-11-24
huha 2020-10-16
lianshaohua 2020-09-23
laisean 2020-11-11
zhangjie 2020-11-11
大牛牛 2020-10-30
firefaith 2020-10-30
liguojia 2020-10-20
wangzhaotongalex 2020-10-20
以梦为马不负韶华 2020-10-20
CARBON 2020-10-20
彼岸随笔 2020-10-20
lianshaohua 2020-10-20
yutou0 2020-10-17
JohnYork 2020-10-16
xiaonamylove 2020-10-16
Julyth 2020-10-16
applecarelte 2020-10-16
ourtimes 2020-10-16