linux 登陆加载配置文件顺序

linux 登陆分为本地登陆 和远程登陆

远程登陆加载文件顺序

a.使用telnet.ssh等连接到服务器

b.服务器启动login

c.用户输入账号与口令

d.服务器打开/etc/shadow  , /etc/passwd  核对信息。  如果正确就在内存加载环境变量

e.切换到主目录

f.启动shell

启动shell分为登陆加载和非登陆加载

1.登陆加载 -- 远程登陆或者本地使用 命令 xxshell -l

系统加载的文件只有2个 为  /etc/profile  和     ~/.bash_profile(或者.bash_login  或者 .profile)

但是系统默认的.pash_profile里面又调用了~/.bashrc 所以

登陆加载shell表现为加载了3个文件

profile  .bash_profile  .bashrc

2.非登陆加载

只会加载.bashrc

登陆加载和非登陆加载的文件其实正好算互补关系

相关推荐