配置 Linux 环境变量的六种方法( 二 )

  • 生效范围:对所有用户有效
  • Linux环境变量配置方法五:vim /etc/profile该方法修改系统配置,需要管理员权限或对文件的写入权限,与vim /etc/bashrc类似:
    # If the /etc/profile file is not editable, it needs to be modified to be editablechmod -v u+w /etc/profilevim /etc/profile# Add on the last lineexport PATH=$PATH:/usr/local/JDK/jdk1.8.0_191/bin
    配置 Linux 环境变量的六种方法

    文章插图
    注意事项:
    • 生效时间:新开终端生效,或手动执行source /etc/profile生效
    • 生效期限:永久生效
    • 生效范围:对所有用户有效
    Linux环境变量配置方法六:vim /etc/environment该方法是修改系统环境配置文件,需要管理员权限或对文件的写入权限:
    # If the /etc/bashrc file is not editable, it needs to be modified to be editablechmod -v u+w /etc/environmentvim /etc/environment# Add on the last lineexport 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" ]; thenif [ "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.bashrcfielseif [ "`id -u`" -eq 0 ]; thenPS1='# 'elsePS1=' 'fififiif [ -d /etc/profile.d ]; thenfor i in /etc/profile.d/*.sh; doif [ -r i ]; then.ifidoneunset ifi接下来,打开/.profile文件,您会发现文件中加载了/.bashrc文件 。
    # if running bashif [ -n "BASH_VERSION" ]; then# include .bashrc if it existsif [ -f "HOME/.bashrc" ]; then. "HOME/.bashrc"fifi# set PATH so it includes user's private bin directoriesPATH="HOME/bin:HOME/.local/bin:PATH"


    推荐阅读