Linux進階之環境變量文件/etc/profile、/etc/bashrc、/etc/environment

1、Centos 環境變量/etc/profile/etc/profile.dlinux

1、兩個文件都是設置環境變量的文件。shell

2/etc/profile 是永久性的環境變量,是全局變量,/etc/profile.d/ 設置對全部用戶生效vim

3/etc/profile.d/ /etc/profile 好維護。不想要什麼變量直接刪除/etc/profile.d/下對應的.sh shell腳本便可,不用像/etc/profile須要改動此文件。tomcat

區別:bash

/etc/profile 是文件less

1、只有Login shell 啓動時纔會運行 /etc/profile 這個腳本,而Non-login shell 不會調用這個腳本。spa

說明:當一個用戶登陸Linux系統或使用su -命令切換到另外一個用戶時,也就是Login shell 啓動時,首先要確保執行的啓動腳本就是 /etc/profile 操作系統

2、在/etc/profile 文件中設置的變量是全局變量。繼承

/etc/profile.d 文件夾,下面包含不少.sh 腳本ci

1)在/etc/profile.d 目錄中存放的是一些應用程序所需的啓動腳本,而這些腳本文件是用來設置一些變量和運行一些初始化過程的。其中包括了顏色、語言、lessvimwhich等命令的一些附加設置。

2/etc/profile.d 下的腳本之因此能自動執行,是由於在/etc/profile 中有一個for循環語句來調用這些腳本。

環境變量配置

1/etc/profile配置

#################################

#在文件最後添加

export PATH=/usr/local/tomcat/bin/:$PATH

##################################

2/etc/profile.d配置

生成一個子配置文件tomcat.sh

###############################

export PATH=/usr/local/tomcat/bin/:$PATH

################################

2、/etc/profile/etc/bashrc的區別

/etc/profile:此文件爲系統的每一個用戶設置環境信息,當用戶第一次登陸時,該文件被執行,並從/etc/profile.d目錄的配置文件中搜集shell的設置。

/etc/bashrc:爲每個運行bash shell的用戶執行此文件,當bash shell被打開時,該文件被讀取。

~/.bash_profile:每一個用戶均可使用該文件輸入專用於本身使用的shell信息,當用戶登陸時,該文件僅僅執行一次!默認狀況下,他設置一些環境變量,執行用戶的.bashrc文件。是交互式login 方式進入 bash 運行的。

~/.bashrc:該文件包含專用於你的bash shellbash信息,當登陸時以及每次打開新的shell時,該文件被讀取。交互式 non-login 方式進入 bash 運行的。

~/.bash_logout:當每次退出系統(退出bash shell)時,執行該文件。

另外,/etc/profile中設定的變量(全局)的能夠做用於任何用戶,而~/.bashrc等中設定的變量(局部)只能繼承/etc/profile中的變量,他們是\"父子\"關係。一般兩者設置大體相同,一般前者會調用後者

3、在登陸Linux時要執行文件的過程以下:

在剛登陸Linux時,首先啓動 /etc/profile 文件,而後再啓動用戶目錄下的 ~/.bash_profile ~/.bash_login ~/.profile文件中的其中一個(根據不一樣的linux操做系統的不一樣,命名不同)

執行的順序爲:~/.bash_profile ~/.bash_login ~/.profile

若是 ~/.bash_profile文件存在的話,通常還會執行 ~/.bashrc文件由於在 ~/.bash_profile文件中通常會有下面的代碼: if [ -f ~/.bashrc ] ; then . ./bashrc fi ~/.bashrc中,通常還會有如下代碼: if [ -f /etc/bashrc ] ; then . /bashrc fi 因此,~/.bashrc會調用 /etc/bashrc文件。最後,在退出shell時,還會執行 ~/.bash_logout文件。

執行順序爲:/etc/profile -> (~/.bash_profile | ~/.bash_login | ~/.profile) -> ~/.bashrc -> /etc/bashrc -> ~/.bash_logout

4、/etc/profile/etc/environment等各類環境變量設置文件的用處

先將export加入/etc/profile,退出系統從新登陸,登陸提示顯示英文。

/etc/profile 中的export刪除,將LNAG=zh_CN加入/etc/environment,退出系統從新登陸,登陸提示顯示中文。

用戶環境創建的過程當中老是先執行/etc/profile而後在讀取/etc/environment爲何會有如上所敘的不一樣呢?

應該是先執行/etc/environment,後執行/etc/profile

/etc/environment是設置整個系統的環境,而/etc/profile是設置全部用戶的環境,前者與登陸用戶無關,後者與登陸用戶有關。

系統應用程序的執行與用戶環境可無關但與系統環境是相關的,對於用戶的SHELL初始化而言是先執行/etc/profile,再讀取文件/etc/environment。對整個系統而言是先執行/etc/environment

/etc/enviroment --> /etc/profile --> $HOME/.profile -->$HOME/.env (若是存在)

/etc/profile 是全部用戶的環境變量

/etc/enviroment是系統的環境變量

登錄系統時shell讀取的順序應該是/etc/profile ->/etc/enviroment -->$HOME/.profile -->$HOME/.env

若是同一個變量在用戶環境(/etc/profile)和系統環境(/etc/environment)有不一樣的值那應該是以用戶環境爲準了。

相關文章
相關標籤/搜索