配置文件的作用--持久保存用户配置
profile类:为交互式登录的用户提供配置
/etc/profile:全局
/etc/profile.d/*.sh:全局
~/.bash_profile:个人配置,仅对当前用户有效
功能:设定环境变量 运行命令或脚本
bashrc类:非交互工登录用户提供配置
/etc/bashrc: 全局
~/.bashrc: 个人配置
功能:设定本地变量 定义命令别名
登录类型:
交互式登录:
直接通过终端输入用户信息登录系统;
su - UserName或su -l UserName;
非交互式登录:
su UserName
图形界面的终端
执行脚本
新增配置的生效方式:
通知shell重读配置文件的命令:
source (.)
. FILE
重新登录
交互式登录用户读取配置文件顺序:
/etc/profile --> /etc/profile.d/*.sh --> ~/.bash_profile --> ~/.bashrc --> /etc/bashrc
非交互式登录用户读取配置文件顺序:
~/.bashrc --> /etc/bashrc --> /etc/profile.d/*.sh
时间: 2024-10-11 00:50:37