在定制安裝軟件時,通常需要配置環境變量。下面列出了環境變量的不同配置方法。
linux中讀取環境變量的方法:
- 使用export命令可以顯示當前系統定義的所有環境變量。
- 使用echo $PATH命令可以輸出當前PATH環境變量的值。
這兩個命令的作用如下:
export:
linuxmi@linuxmi /home/linuxmi/www.linuxmi.com
? export
CMAKE_ROOT=/Applications/CMake.app/Contents/bin/
COLORTERM=truecolor
DBUS_SESSION_BUS_ADDRESS='unix:path=/run/user/1000/bus,guid=95984122dede7a7f5360af3a642734c0'
DBUS_STARTER_ADDRESS='unix:path=/run/user/1000/bus,guid=95984122dede7a7f5360af3a642734c0'
DBUS_STARTER_BUS_TYPE=session
DESKTOP_SESSION=ubuntu-wayland
DISPLAY=:0
GDMSESSION=ubuntu-wayland
GNOME_DESKTOP_SESSION_ID=this-is-deprecated
GNOME_SETUP_DISPLAY=:1
......
echo $PATH:
linuxmi@linuxmi /home/linuxmi/www.linuxmi.com
? echo $PATH
/Applications/CMake.app/Contents/bin/:/home/linuxmi/.nvm/versions/node/v19.3.0/bin:/home/linuxbrew/.linuxbrew/bin:/home/linuxbrew/.linuxbrew/sbin:/home/linuxmi/.cargo/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/games:/snap/bin
其中,PATH變量定義了運行命令的搜索路徑,并使用冒號“:”分隔不同的路徑。在使用export命令定義時,可以添加雙引號或不添加。
Linux環境變量配置方法一:export PATH
使用export命令直接修改PATH的值,并增加JDK環境變量:
[root@k8s-node04 JDK]# pwd
/usr/local/JDK
[root@k8s-node04 JDK]# ll
total 4
drwxr-xr-x 9 root root 126 Sep 7 15:21 jdk-11.0.16
drwxr-xr-x. 7 10 143 245 Oct 6 2018 jdk1.8.0_191
-rwxrwxrwx. 1 root root 2277 Mar 15 2019 Tomcat.keystore
[root@k8s-node04 JDK]#
[root@k8s-node04 JDK]# echo $PATH
/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/usr/local/JDK/jdk-11.0.16/bin:/root/bin
[root@k8s-node04 JDK]#
[root@k8s-node04 JDK]# export PATH=/usr/local/JDK/jdk1.8.0_191/bin:$PATH
[root@k8s-node04 JDK]#
[root@k8s-node04 JDK]# echo $PATH
/usr/local/JDK/jdk1.8.0_191/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/usr/local/JDK/jdk-11.0.16/bin:/root/bin
注意事項:
- 生效時間:立即生效
- 生效期限:僅對當前終端有效,在窗口關閉后失效
- 生效范圍:僅對當前用戶有效
- 別忘了將原始配置,即$PATH部分,添加到已配置的環境變量中,以避免覆蓋原始配置
Linux環境變量配置方法二:vim ~/.bashrc
通過修改用戶目錄下的~/.bashrc文件進行配置:
vim ~/.bashrc
# Add on the last line
export PATH=$PATH:/usr/local/JDK/jdk1.8.0_191/bin
注意事項:
- 生效時間:當同一用戶打開新終端時生效,或手動執行source ~/.bashrc
- 生效期限:永久生效
- 生效范圍:僅對當前用戶有效
- 如果有后續的環境變量加載文件覆蓋了PATH定義,可能會導致其失效
Linux環境變量配置方法三:vim ~/.bash_profile
與修改~/.bashrc文件類似,也需要在文件末尾添加新的路徑:
vim ~/.bash_profile
# Add on the last line
export PATH=$PATH:/usr/local/JDK/jdk1.8.0_191/bin
注意事項:
- 生效時間:當同一用戶打開新終端時生效,或手動執行source /.bash_profile
- 生效期限:永久生效 · 生效范圍:僅對當前用戶有效
- 如果沒有/.bash_profile文件,可以編輯~/.profile文件或創建一個新文件
Linux環境變量配置方法四:vim /etc/bashrc
該方法是修改系統配置,需要管理員權限(例如root)或對文件的寫入權限:
# If the /etc/bashrc file is not editable, it needs to be modified to be editable
chmod -v u+w /etc/bashrc
vim /etc/bashrc
# Add on the last line
export PATH=$PATH:/usr/local/JDK/jdk1.8.0_191/bin
注意事項:
- 生效時間:新開終端生效,或手動執行source /etc/bashrc生效
- 生效期限:永久生效
- 生效范圍:對所有用戶有效
Linux環境變量配置方法五:vim /etc/profile
該方法修改系統配置,需要管理員權限或對文件的寫入權限,與vim /etc/bashrc類似:
# If the /etc/profile file is not editable, it needs to be modified to be editable
chmod -v u+w /etc/profile
vim /etc/profile
# Add on the last line
export PATH=$PATH:/usr/local/JDK/jdk1.8.0_191/bin
注意事項:
- 生效時間:新開終端生效,或手動執行source /etc/profile生效
- 生效期限:永久生效
- 生效范圍:對所有用戶有效
Linux環境變量配置方法六:vim /etc/environment
該方法是修改系統環境配置文件,需要管理員權限或對文件的寫入權限:
# If the /etc/bashrc file is not editable, it needs to be modified to be editable
chmod -v u+w /etc/environment
vim /etc/environment
# Add on the last line
export PATH=$PATH:/usr/local/JDK/jdk1.8.0_191/bin
注意事項:
- 生效時間:新開終端生效,或手動執行source /etc/environment生效
- 生效期限:永久生效
- 生效范圍:對所有用戶有效
Linux環境變量加載原理分析
以上列舉了環境變量的各種配置方法,那么Linux是如何加載這些配置的呢?它們的加載順序是怎樣的?
特定的加載順序會導致同名環境變量定義被覆蓋或無效。
環境變量的分類 環境變量可以簡單地分為用戶定義的環境變量和系統級別的環境變量。
- 用戶級環境變量定義文件:/.bashrc、/.profile(有些系統是:~/.bash_profile)
- 系統級環境變量定義文件:/etc/bashrc、/etc/profile(有些系統是:/etc/bash_profile)、/etc/environment
此外,在用戶環境變量中,系統會先讀取~/.bash_profile(或~/.profile)文件,如果沒有這樣的文件,它會讀取~/.bash_login,然后根據這些文件的內容讀取~/.bashrc。
如何測試Linux環境變量的加載順序
為了測試不同文件的環境變量加載順序,我們在每個環境變量定義文件的第一行定義相同的環境變量 UU_ORDER,其值將其自身的值連接到當前文件名后面。
需要修改的文件如下:
/etc/environment
/etc/profile
/etc/profile.d/test.sh,新建文件,無需跳過文件夾
/etc/bashrc,或/etc/bash.bashrc
/.bash_profile,或/.profile ~
/.bashrc
并根據當前文件的絕對文件名相應地修改冒號后面的內容。
export UU_ORDER="$UU_ORDER:~/.bash_profile"
修改完成后保存,打開一個新的窗口,然后使用echo $UU_ORDER命令觀察變量的值:
linuxmi@ubuntu:~echoUU_ORDER
$UU_ORDER:/etc/environment:/etc/profile:/etc/bash.bashrc:/etc/profile.d/test.sh:~/.profile:~/.bashrc
可以推斷出,Linux 加載環境變量的順序如下:
- /etc/environment
- /etc/profile
- /etc/bash.bashrc
- /etc/profile.d/test.sh
- ~/.profile
- ~/.bashrc
Linux 環境變量文件加載詳解 從以上測試中,可以很容易地得出 Linux 加載環境變量的順序如下:
系統環境變量 -> 用戶定義的環境變量 /etc/environment -> /etc/profile -> ~/.profile
打開 /etc/profile 文件,您會發現在文件代碼中會加載 /etc/bash.bashrc 文件,然后檢查 /etc/profile.d/ 目錄中的 .sh 文件并加載它們。
# /etc/profile: system-wide .profile file for the Bourne shell (sh(1))
# and Bourne compatible shells (bash(1), ksh(1), ash(1), ...).
if [ "PS1" ]; then
if [ "BASH" ] && [ "BASH" != "/bin/sh" ]; then
# The file bash.bashrc already sets the default PS1.
# PS1='h:w$ '
if [ -f /etc/bash.bashrc ]; then
. /etc/bash.bashrc
fi
else
if [ "`id -u`" -eq 0 ]; then
PS1='# '
else
PS1=' '
fi
fi
fi
if [ -d /etc/profile.d ]; then
for i in /etc/profile.d/*.sh; do
if [ -r i ]; then
.i
fi
done
unset i
fi
接下來,打開/.profile文件,您會發現文件中加載了/.bashrc文件。
# if running bash
if [ -n "BASH_VERSION" ]; then
# include .bashrc if it exists
if [ -f "HOME/.bashrc" ]; then
. "HOME/.bashrc"
fi
fi
# set PATH so it includes user's private bin directories
PATH="HOME/bin:HOME/.local/bin:PATH"
接下來,打開 ~/.profile 文件,可以發現在該文件中加載了 ~/.bashrc 文件。
從 ~/.profile 文件中的代碼中,不難發現當用戶登錄時,只會讀取一次 /.profile 文件,而每次運行 Shell 腳本時,都會讀取一次 ~/.bashrc。
一些小技巧
你可以自定義一個環境變量文件,比如在某個項目下定義 uusama.profile,使用 export 定義一系列變量在該文件中,然后在 ~/.profile 文件后面添加 sourc uusama.profile,這樣就可以在登錄的 Shell 腳本中使用自己定義的一系列變量。
你也可以使用 alias 命令為一些命令定義別名,比如 alias rm=”rm -i”(需要使用雙引號),并將該代碼添加到 ~/.profile 中,這樣每次使用 rm 命令時,就很方便地使用 rm -i 命令了。