如何解決無法自動加載 .bashrc的問題
- 解決辦法:運行
vim ~/.bash_profile
添加以下內(nèi)容if [ -f ~/.bashrc ] ; then source ~/.bashrc fi
- 來源:Ubuntu: 用戶無法自動加載 .bashrc的問題
補充:登錄時 /etc/profile顺囊、~/.bash_profile等文件的執(zhí)行過程。
在剛登錄Linux時,首先啟動 /etc/profile 文件霎冯,然后再啟動用戶目錄下的 ~/.bash_profile穆端、 ~/.bash_login或 ~/.profile文件中的其中一個乎折,執(zhí)行的順序為:~/.bash_profile价认、 ~/.bash_login油挥、 ~/.profile扁耐。如果 ~/.bash_profile文件存在的話暇检,一般還會執(zhí)行 ~/.bashrc文件。因為在 ~/.bash_profile文件中一般會有下面的代碼:
if [ -f ~/.bashrc ] ; then
. ./bashrc
fi
~/.bashrc中婉称,一般還會有以下代碼:
if [ -f /etc/bashrc ] ; then
. /bashrc
fi
所以块仆,~/.bashrc會調(diào)用 /etc/bashrc文件。最后王暗,在退出shell時悔据,還會執(zhí)行 ~/.bash_logout文件。
執(zhí)行順序為:/etc/profile -> (~/.bash_profile | ~/.bash_login | ~/.profile) -> ~/.bashrc -> /etc/bashrc -> ~/.bash_logout
關于各個文件的作用域俗壹,在網(wǎng)上找到了以下說明:
(1)/etc/profile: 此文件為系統(tǒng)的每個用戶設置環(huán)境信息,當用戶第一次登錄時,該文件被執(zhí)行. 并從/etc/profile.d目錄的配置文件中搜集shell的設置科汗。
(2)/etc/bashrc: 為每一個運行bash shell的用戶執(zhí)行此文件.當bash shell被打開時,該文件被讀取。
(3)~/.bash_profile: 每個用戶都可使用該文件輸入專用于自己使用的shell信息,當用戶登錄時,該文件僅僅執(zhí)行一次!默認情況下,他設置一些環(huán)境變量,執(zhí)行用戶的.bashrc文件绷雏。
(4)~/.bashrc: 該文件包含專用于你的bash shell的bash信息,當?shù)卿洉r以及每次打開新的shell時,該該文件被讀取头滔。
(5)~/.bash_logout:當每次退出系統(tǒng)(退出bash shell)時,執(zhí)行該文件. 另外,/etc/profile中設定的變量(全局)的可以作用于任何用戶,而~/.bashrc等中設定的變量(局部)只能繼承/etc /profile中的變量,他們是”父子”關系。
(6)~/.bash_profile 是交互式涎显、login 方式進入 bash 運行的~/.bashrc 是交互式 non-login 方式進入 bash 運行的通常二者設置大致相同坤检,所以通常前者會調(diào)用后者。