Ubuntu配置PATH环境变量
Posted iiixxxiii
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Ubuntu配置PATH环境变量相关的知识,希望对你有一定的参考价值。
在
~/.profile
文件中加入以下指令,创建 PATH
:sudo gedit ~/.bashrc
1
1
sudo gedit ~/.bashrc
在 ~/.bashrc 中进行设置,在文件最前面加入如下单独一行
export PATH=$PATH:/usr/local/hadoop/sbin:/usr/local/hadoop/bin
1
1
export PATH=$PATH:/usr/local/hadoop/sbin:/usr/local/hadoop/bin
添加后执行
source ~/.bashrc
1
source ~/.bashrc
使设置生效
以上是关于Ubuntu配置PATH环境变量的主要内容,如果未能解决你的问题,请参考以下文章