Linux 环境变量配置全攻略(建议收藏)
全栈开发者社区
共 4925字,需浏览 10分钟
·
2020-12-31 23:17
点击上方[全栈开发者社区]→右上角[...]→[设为星标⭐]
在自定义安装软件的时候,经常需要配置环境变量,下面列举出各种对环境变量的配置方法。
下面所有例子的环境说明如下:
系统:Ubuntu 14.0 用户名:uusama 需要配置MySQL环境变量路径:/home/uusama/mysql/bin
Linux读取环境变量
export
命令显示当前系统定义的所有环境变量echo $PATH
命令输出当前的PATH
环境变量的值
uusama@ubuntu:~$ export
declare -x HOME="/home/uusama"
declare -x LANG="en_US.UTF-8"
declare -x LANGUAGE="en_US:"
declare -x LESSCLOSE="/usr/bin/lesspipe %s %s"
declare -x LESSOPEN="| /usr/bin/lesspipe %s"
declare -x LOGNAME="uusama"
declare -x MAIL="/var/mail/uusama"
declare -x PATH="/home/uusama/bin:/home/uusama/.local/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin"
declare -x SSH_TTY="/dev/pts/0"
declare -x TERM="xterm"
declare -x USER="uusama"
uusama@ubuntu:~$ echo $PATH
/home/uusama/bin:/home/uusama/.local/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
PATH
变量定义了运行命令的查找路径,以冒号:
分割不同的路径,使用export
定义的时候可加双引号也可不加。Linux环境变量配置方法一: export PATH
export
命令直接修改PATH
的值,配置MySQL进入环境变量的方法:export PATH=/home/uusama/mysql/bin:$PATH
# 或者把PATH放在前面
export PATH=$PATH:/home/uusama/mysql/bin
生效时间:立即生效 生效期限:当前终端有效,窗口关闭后无效 生效范围:仅对当前用户有效 配置的环境变量中不要忘了加上原来的配置,即 $PATH
部分,避免覆盖原来配置
Linux环境变量配置方法二: vim ~/.bashrc
~/.bashrc
文件进行配置:vim ~/.bashrc
# 在最后一行加上
export PATH=$PATH:/home/uusama/mysql/bin
生效时间:使用相同的用户打开新的终端时生效,或者手动 source ~/.bashrc
生效生效期限:永久有效 生效范围:仅对当前用户有效 如果有后续的环境变量加载文件覆盖了 PATH
定义,则可能不生效
Linux环境变量配置方法三: vim ~/.bash_profile
~/.bashrc
文件类似,也是要在文件最后加上新的路径即可:vim ~/.bash_profile
# 在最后一行加上
export PATH=$PATH:/home/uusama/mysql/bin
生效时间:使用相同的用户打开新的终端时生效,或者手动 source ~/.bash_profile
生效生效期限:永久有效 生效范围:仅对当前用户有效 如果没有 ~/.bash_profile
文件,则可以编辑~/.profile
文件或者新建一个
Linux环境变量配置方法四:vim /etc/bashrc
# 如果/etc/bashrc文件不可编辑,需要修改为可编辑
chmod -v u+w /etc/bashrc
vim /etc/bashrc
# 在最后一行加上
export PATH=$PATH:/home/uusama/mysql/bin
生效时间:新开终端生效,或者手动 source /etc/bashrc
生效生效期限:永久有效 生效范围:对所有用户有效
Linux环境变量配置方法五: vim /etc/profile
vim /etc/bashrc
类似:# 如果/etc/profile文件不可编辑,需要修改为可编辑
chmod -v u+w /etc/profile
vim /etc/profile
# 在最后一行加上
export PATH=$PATH:/home/uusama/mysql/bin
生效时间:新开终端生效,或者手动 source /etc/profile
生效生效期限:永久有效 生效范围:对所有用户有效
Linux环境变量配置方法六:vim /etc/environment
# 如果/etc/bashrc文件不可编辑,需要修改为可编辑
chmod -v u+w /etc/environment
vim /etc/profile
# 在最后一行加上
export PATH=$PATH:/home/uusama/mysql/bin
生效时间:新开终端生效,或者手动 source /etc/environment
生效生效期限:永久有效 生效范围:对所有用户有效 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
观察变量的值:uusama@ubuntu:~$ echo $UU_ORDER
$UU_ORDER:/etc/environment:/etc/profile:/etc/bash.bashrc:/etc/profile.d/test.sh:~/.profile:~/.bashrc
/etc/environment /etc/profile /etc/bash.bashrc /etc/profile.d/test.sh ~/.profile ~/.bashrc
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
文件中代码不难发现,/.profile
文件只在用户登录的时候读取一次,而/.bashrc
会在每次运行Shell
脚本的时候读取一次。一些小技巧
uusama.profile
,在这个文件中使用export
定义一系列变量,然后在~/.profile
文件后面加上:sourc uusama.profile
,这样你每次登陆都可以在Shell脚本中使用自己定义的一系列变量。alias
命令定义一些命令的别名,比如alias rm="rm -i"
(双引号必须),并把这个代码加入到~/.profile
中,这样你每次使用rm
命令的时候,都相当于使用rm -i
命令,非常方便。觉得本文对你有帮助?请分享给更多人
关注「全栈开发者社区」加星标,提升全栈技能
本公众号会不定期给大家发福利,包括送书、学习资源等,敬请期待吧!
如果感觉推送内容不错,不妨右下角点个在看转发朋友圈或收藏,感谢支持。
好文章,留言、点赞、在看和分享一条龙吧❤️
评论