首页 > 代码库 > Linux操作系统改动PATH的方法

Linux操作系统改动PATH的方法

1. 暂时改动:

使用export。比如#export PATH=$PATH:/etc/apache/bin


2. 针对用户的改动:

vi ~/.bash_profile

增加:export PATH=$PATH:/etc/apache/bin

然后source ~/.bash_profile


3. 全局改动(root权限):

vi /etc/profile文件,

增加:export PATH=$PATH:/etc/apache/bin

然后source /etc/profile

Linux操作系统改动PATH的方法