etc/profile /etc/bashrc ~/.bash_profile ~/.bashrc等配置文件区别

/etc/profile:此文件为系统的每个用户设置环境信息,当用户第一次登录时,该文件被执行并从/etc/profile.d目录的配置文件中搜集shell的设置.

/etc/bashrc:为每一个运行bash shell的用户执行此文件.当bash shell被打开时,该文件被读取.

~/.bash_profile:每个用户都可使用该文件输入专用于自己使用的shell信息,当用户登录时,该文件仅仅执行一次!默认情况下,他设置一些环境变量,执行用户的.bashrc文件.

~/.bash_login:若bash是以login方式执行时,读取~/.bash_profile,若它不存在,则读取~/.bash_login,若前两者不存在,读取~/.profile.

~/.profile:若bash是以login方式执行时,读取~/.bash_profile,若它不存在,则读取~/.bash_login,若前两者不存在,读取~/.profile.另外,图形模式登录时,此文件将被读取,即使存在~/.bash_profile和~/.bash_l~/.bashrc:该文件包含专用于你的bash shell的bash信息,当登录时以及每次打开新的shell时,该该文件被读取.

~/.bash_logout:当每次退出系统(退出bash shell)时,执行该文件. 也就是说,在文本模式注销时,此文件会被读取,图形模式注销时,此文件不会被读.

下面是在本机的几个例子: 1. 图形模式登录时,顺序读取:/etc/profile和~/.profile

2. 图形模式登录后,打开终端时,顺序读取:/etc/bashrc和~/.bashrc 
 
3. 文本模式登录时,顺序读取:/etc/bashrc,/etc/profile,~/.bash_profile和~/.bashrc
 
4. 从其它用户su到该用户,则分两种情况: 
 
    (1)如果带-l参数(或-参数,--login参数),如:su -l username,则bash是lonin的,它将顺序读取以下配置文件:/etc/bashrc,/etc/profile~/.bash_profile和~/.bashrc。 
 
    (2)如果没有带-l参数,则bash是non-login的,它将顺序读取:/etc/bashrc和~/.bashrc 
 
5. 注销时,或退出su登录的用户,如果是longin方式,那么bash会读取:~/.bash_logout 
 
6. 执行自定义的shell文件时,若使用“bash -l a.sh”的方式,则bash会读取行:/etc/profile,~/.bash_profile,~/.bashrc和/etc/bashrc,若使用其它方式,如:bash a.sh, ./a.sh,sh a.sh(这个不属于bash shell),则不会读取上面的任何文件。 
 
7. 上面的例子凡是读取到~/.bash_profile的,若该文件不存在,则读取~/.bash_login,若前两者不存在,读取~/.profile。 
 
bashrc与profile的区别

要搞清bashrc与profile的区别,首先要弄明白什么是交互式shell和非交互式shell,什么是login shell 和non-login shell。 

 交互式模式就是shell等待你的输入,并且执行你提交的命令。这种模式被称作交互式是因为shell与用户进行交互。这种模式也是大多数用户非常熟悉 的:登录、执行一些命令、签退。当你签退后,shell也终止了。 shell也可以运行在另外一种模式:非交互式模式。在这种模式下,shell不与你进行交互,而是读取存放在文件中的命令,并且执行它们。当它读到文件 的结尾,shell也就终止了。   

bashrc与profile都用于保存用户的环境信息,bashrc用于交互式non-loginshell,而profile用于交互式login shell。系统中存在许多bashrc和profile文件,下面逐一介绍: 

时间: 2024-12-28 13:04:04

etc/profile /etc/bashrc ~/.bash_profile ~/.bashrc等配置文件区别的相关文章

bashrc,bash_profile和/etc/profile

bashrc,bash_profile和/etc/profile 最近老出现在shell里面能跑的程序用鼠标双击app去不能跑.究其原因是因为环境变量的问题. 在类unix系统中一般有三个bash配置文件: ~/.bashrc 当前用户使用的配置文件 ~/.bash_profile 当前用户使用的配置文件 /etc/profile 所有用户都会继承的环境配置文件 我们需要搞清楚/etc/profile, ~/.bash_profile和~/.bashrc这几个文件的加载顺序. 一般来说~/.ba

profile bashrc bash_profile之间的区别和联系

转载:http://talentluke.iteye.com/blog/1541702 执行顺序为:/etc/profile -> (~/.bash_profile | ~/.bash_login | ~/.profile) -> ~/.bashrc -> /etc/bashrc -> ~/.bash_logout 关于各个文件的作用域,在网上找到了以下说明: (1)/etc/profile: 此文件为系统的每个用户设置环境信息,当用户第一次登录时,该文件被执行,并从/etc/pr

profile bashrc bash_profile 之间的区别和联系

/etc/profile:此文件为系统的每个用户设置环境信息,当用户第一次登录时,该文件被执行.并从/etc/profile.d目录的配置文件中搜集shell的设置. /etc/bashrc:为每一个运行bash shell的用户执行此文件.当bash shell被打开时,该文件被读取. ~/.bash_profile:每个用户都可使用该文件输入专用于自己使用的shell信息,当用户登录时,该文件仅仅执行一次!默认情况下,他设置一些环境变量,执行用户的.bashrc文件. ~/.bashrc:该

【总结】/etc/rc.d/rc.local 与 /etc/profile .bash_profile .bashrc 文件执行顺序

登陆shell与交互式非登陆shell的区别 登录shell 所谓登录shell,指的是当用户登录系统时所取的那个 shell.登录shell属于交互式shell. 登录shell将查找4个不同的启动文件来处理其中的命令. bash shell处理文件的顺序如下: /etc/profile /etc/profile.d等待配置文件 $HOME/.bash_profile $HOME/.bash_login $HOME/.profile /etc/profile是bash shell在系统上的主默

CentOS6 /etc/profile ~/.bash_profile ~/.bashrc等文件的执行顺序

交互式登陆shell的执行顺序:/etc/profile -> ~/.bash_profile -> ~/.bashrc -> /etc/bashrc ->  ~/.bash_logout (退出时执行) 交互式非登陆shell的执行顺序:~/.bashrc -> /etc/bashrc 在非交互模式下,bash读取的startup文件由环境变量BASH_ENV来决定 参考:http://yujia2016.blog.51cto.com/59379/1775070 http:

老男孩教育每日一题-第76天-说说/etc/profile /etc/bashrc .bashrc .bash_profile的区别

参考答案: 每个文件的含义 /etc/profile    主要用是系统的环境变量,同时我们也放些别名/etc/bashrc    主要用来存放系统的别名和自己定义的函数(都可以放到 /etc/profile中).bashrc       是用户自己定义的别名.bash_profile  是用户自己定义的环境变量 文件之间的联系: 测试方法在/etc/bashrc /etc/profile .bashrc .bash_profile 这四个文件的第一行和最后一行添加上标记 /etc/profil

关于login/interactive/no-interactive shell和profile/bash_profile/bashrc

login shell:第一次登录进系统时的shell,一般是指本机启动时的控制台shell或者ssh远程登录时的shell. interactive shell:登录以后,再打开控制台时运行的shell. none interactive shell:只是用来执行脚本的shell,执行完就结束进程了,没有用户交互过程. mac有个特殊地方:每次打开一个终端都是一个login shell. 检测当前shell是哪种的方法: To check if you are in an interactiv

linux下/etc/profile、/etc/bashrc、~/.bashrc 和~/.bash_profile文件的区别

这个一定要理解登录式shell和非登录式shell的区别,前者是完全切换用户,后者是不完全,就算切换过来了,你pwd时家目录还是之前的家目录,所以 登录式顺序为:/etc/bashrc---/etc/profile.d/*.sh----~/.bash_profile---~/.bashrc_profile----~/.bashrc-----/etc/bashrc   非登录式:~/.bashrc-----/etc/bashrc-/etc/profile.d/*.sh /etc/profile: 

【Linux】Linux下 环境变量/etc/profile、/etc/bashrc、~/.bashrc的区别【转】

转自:http://blog.csdn.net/qiao1245/article/details/44650929 ------------------------------------------------------------------------------------------------------------------------------------------------ ===============================================