当前位置: 技术问答>linux和unix
linux中环境变量的设置问题(BASH_PROFILE)
来源: 互联网 发布时间:2016-06-17
本文导语: 清各位看看我设置的环境变量有没有问题 主要是想把/usr/local/netflow/bin加到环境变量里 原BASH_PROFILE文件为: # .bash_profile # Get the aliases and functions if [ -f ~/.bashrc ]; then . ~/.bashrc fi # User specific environment and s...
清各位看看我设置的环境变量有没有问题
主要是想把/usr/local/netflow/bin加到环境变量里
原BASH_PROFILE文件为:
# .bash_profile
# Get the aliases and functions
if [ -f ~/.bashrc ]; then
. ~/.bashrc
fi
# User specific environment and startup programs
PATH=$PATH:$HOME/bin
export PATH
我改的为:
# .bash_profile
# Get the aliases and functions
if [ -f ~/.bashrc ]; then
. ~/.bashrc
fi
# User specific environment and startup programs
PATH=$PATH:$HOME/bin:$HOME/usr/local/netflow/bin
export PATH
就只是加了一部分
是不是对的阿?
修改完后重启还是不能直接用里面的命令
主要是想把/usr/local/netflow/bin加到环境变量里
原BASH_PROFILE文件为:
# .bash_profile
# Get the aliases and functions
if [ -f ~/.bashrc ]; then
. ~/.bashrc
fi
# User specific environment and startup programs
PATH=$PATH:$HOME/bin
export PATH
我改的为:
# .bash_profile
# Get the aliases and functions
if [ -f ~/.bashrc ]; then
. ~/.bashrc
fi
# User specific environment and startup programs
PATH=$PATH:$HOME/bin:$HOME/usr/local/netflow/bin
export PATH
就只是加了一部分
是不是对的阿?
修改完后重启还是不能直接用里面的命令
|
PATH=$PATH:$HOME/bin:$HOME/usr/local/netflow/bin
更改为:
PATH=$PATH:$HOME/bin:/usr/local/netflow/bin
更改为:
PATH=$PATH:$HOME/bin:/usr/local/netflow/bin
|
$HOME目录下有/usr/local/netflow/bin 吗?
应该是在根目录下吧
所以按1楼说的试一试
应该是在根目录下吧
所以按1楼说的试一试