1.login shell与non-login shell的概念
(1)login shell
取得shell(如bash)时需要完整的登录流程,就称为login shell。举例来说,有tty1-tty6登录,输入用户的账户和密码后,取得的shell就称为“login shell”
(2)non-login shell
取得shell不需要账户登录的流程。比如说,在X window登录linux后,在桌面右击获取的命令行窗口,此时不需要用账户名和密码进行登录,那这个bash的环境就称为non-login shell。在比如,在bash中再次执行bash命令,获取到的子bash进程,也没有登录动作,这个子bash进程同样是non-login shell。
2.login shell和non-login shell的区别
login shell和non-login shell的核心区别就是在获取shell时,读取的配置文件不同。
(1)login shell读取的配置文件
(2)non-login shell读取的配置文件
备注,通常我们新增环境变量是在/eth/profile或~/.bash_profile中修改即可。比如在PATH环境变量中新添加一个路径:
#将/home/local/tmux/bin加入到环境变量PATH中 export PATH=/home/local/tmux/bin:$PATH 或 PATH=/home/local/tmux/bin:$PATH export PATH关于linux中变量知识,参见《 Linux下变量的小结》