ubuntu 环境变量 失效的解决办法

作为初学者,使用ubuntu碰到各种各样的问题

有时候明明设置了环境变量,重启后又不管用了,查了一下,原来是设置的方式不对,设置了临时的环境变量

下面的第二第三种就就是解决办法


设置环境变量 多个路径用冒号隔开

1临时

export PATH=$PATH:/home/lincoln/Android/bin

 

2用户环境变量:仅对使用用户有效

# gedit /~/.bashrc

export PATH="$PATH:/home/lincoln/Android/bin"


3系统环境变量:对所有人有效

 gedit /etc/profile

export PATH="$PATH:/home/lincoln/Android/bin"

2.3两种方法需要<注销>系统生效,或者source/etc/profile

打印出来看下环境变量内容,确认是否加入成功

echo $PATH

-------------------------------------------------------------------------------------------------------

Ubuntu包含两种环境变量:系统,用户

用户环境变量:

~/.profile

~/.bash_profile 或者 ~./bash_login

~/.bashrc

系统环境变量:

/etc/environment

/etc/profile

/etc/bash.bashrc


/etc/profile 和 /etc/bash.bashrc在ubuntu10.0不推荐使用


ubuntu官网介绍:

https://help.ubuntu.com/community/EnvironmentVariables


你可能感兴趣的:(ubuntu 环境变量 失效的解决办法)