linux bash配置文件详解
1、login shell 和non-login shell
顾名思义,login shell就是要输入用户名和密码才能启动的shell,non-login shell不需要重复登录就能启动shell。
2、login shell环境配置文件
/etc/profile: 系统整体的配置文件,对所有登录的用户有效。
/etc/profile会调用的配置文件:
/etc/inputrc:设置热键等信息;
/etc/profile.d/*.sh: 操作界面、语言习惯、公共命令的别名等;
/etc/sysconfig/i18n:/etc/profile.d/*.sh调用,配置语系。
~/.bash_profile: 个人配置文件
~/.bash_login: 个人配置文件
~/.profile: 个人配置文件
优先级:~/.bash_profile>~/.bash_login>~/.profile
如果~/.bashrc存在: ~/.bash_profile-->~/.bashrc-->~/.bashrc-->/etc/bashrc-->/etc/profile.d/*.sh-->/etc/sysconfig/i18n
3、non-login shell 环境配置
配置~/.bashrc
调用顺序:~/.bashrc-->~/.bashrc-->/etc/bashrc-->/etc/profile.d/*.sh-->/etc/sysconfig/i18n
相关推荐
applecarelte 2020-10-16
touchfuture 2020-09-16
tianhuak 2020-11-24
以梦为马不负韶华 2020-10-20
彼岸随笔 2020-10-20
yutou0 2020-10-17
ourtimes 2020-10-16
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
CARBON 2020-10-20
lianshaohua 2020-10-20
JohnYork 2020-10-16
xiaonamylove 2020-10-16