对所有用户永久生效
vi /etc/profile
注释:在profile文件最下方添加环境变量,最后执行以下命令使其生效:
source /etc/profile
对当前用户永久生效
vi ~/bash_profile
注释:在bash_profile文件最下方添加环境变量,最后执行以下命令使其生效:
source ~/bash_profile
临时生效
export 环境变量
注释:当机器重启时,变量也随之失效
vi /etc/profile
注释:在profile文件最下方添加环境变量,最后执行以下命令使其生效:
source /etc/profile
vi ~/bash_profile
注释:在bash_profile文件最下方添加环境变量,最后执行以下命令使其生效:
source ~/bash_profile
export 环境变量
注释:当机器重启时,变量也随之失效