标签:linu profile nbsp etc bash lin bin 环境变量 ros
linux全局环境变量有三个文件:
/etc/profile
/etc/profile.d
/etc/bashrc -----> 推荐在此文件优先配置
也可以直接使用: export 命令来设置环境变量, 下面看一个例子:
需要将 /opt/stack/devstack 路径加入环境变量中
第一种方式:~# export PATH=$PATH:/opt/stack/devstack
第二种方式:
修改.bashrc、profile文件:
# vi /root/.bashrc
在最后加入:
export PATH="$PATH:/opt/au1200_rm/build_tools/bin"
标签:linu profile nbsp etc bash lin bin 环境变量 ros
原文地址:http://www.cnblogs.com/vincenshen/p/6414567.html