标签:use 基础概念 基础 bsp 文件 管理系 用户 bash的配置文件 本地变量
1. 用户类别:
管理员:0
普通用户:1-65535
系统用户:1-499【专门用来运行后台进程,不需要登陆,不与用户关联】
一般用户:500-60000【即管理员创建的用于日常工作而不能管理系统的普通用户】
2. 以用户角度,SHELL的类型:
①登录式shell
正常通过某终端登录
su - USERNAME
su -l USERNAEM
②非登录式shell
su USERNAME
图形终端下打开的命令窗口
自动执行的shell脚本
3. bash的配置文件:
①全局配置
/etc/profile,/etc/profile.d/*.sh,/etc/bashrc
②个人配置
~/.bash_profile,~/.bashrc
profile类型的文件:①设定环境变量 ②运行命令或脚本
bashrc类型文件:①设定本地变量 ②设定命令别名
4. 登录式shell如何读取配置文件?
/etc/profile --> /etc/profile.d/*.sh --> ~/.bash_profiel --> ~/.bashrc --> /etc/bashrc
5. 非登录式shell如何读取配置文件?
~/.bashrc --> /etc/bashrc --> /etc/profile.d/*.sh
标签:use 基础概念 基础 bsp 文件 管理系 用户 bash的配置文件 本地变量
原文地址:http://www.cnblogs.com/libaoliang/p/7419392.html