linux --环境变量配置文件
登录时生效的环境变量配置文件
在Linux 系统登陆时主要生效的环境变量配置文件可以有以下5个:
1) /etc/profile
2) /etc/profile.d/*.sh
3) /etc/bashrc
****1,2, 3 这三个配置文件是针对所有用户
4)~./bash_profile
5) ~/.bashrc
*** 4. 5 两者是针对当前用户生效
Source 命令
[root@localhost ~]source 配置文件
[root@localhost ~].配置文件
环境变量配置文件调用过程
在用户登陆过程中先调用/etc/profile 文件
在这个环境变量配置文件中会定义这些默认环境变量:
user变量,LOGNAME变量;MAIL变量;PATH变量;hostname变量,histsize 变量;
umask(定义umask默认权限,注意/etc/profile文件中的umask权限是在“有用户登陆过程(也就是在输入了用户名和密码)”时才生效)
调用/etc/profile.d/*.sh 文件,也就是调用/etc/profile.d/目录下所有以.sh结尾的文件
每天进步一点点~~