This commit is contained in:
nick 2018-05-21 11:35:20 +08:00
parent 06e04c7b63
commit 9876fe56ad
2 changed files with 26 additions and 1 deletions

View File

@ -17,6 +17,26 @@
- 网络功能强大 - 网络功能强大
- 稳定 - 稳定
## Linux 的运行级别
- 0 停机,关机
- 1 单用户,无网络连接,不运行守护进程,仅 root 用户可以登录
- 2 多用户,无网络连接,不运行守护进程
- 3 多用户,正常启动系统
- 4 用户自定义
- 5 多用户,带图形界面
- 6 重启
## Linux 的启动流程
1. 加载内核
2. 启动初始化进程
3. 确定运行级别
4. 加载开机启动程序
5. 用户登录
6. 进入 login shell
7. 打开 non-login shell
## Linux 的目录结构 ## Linux 的目录结构
Ubuntu 16.04 Ubuntu 16.04

View File

@ -57,6 +57,11 @@
* [shell](shell.md) * [shell](shell.md)
## 实用 shell 例子 ## 实用 shell 例子
* [demo](demo.md) * [demo](demo.md)
## 参考资料
* [书籍](http://billie66.github.io/TLCL/book/)
* [网站](http://www.ywnds.com/)
* [网站](http://man.linuxde.net/)