diff --git a/Introduction.md b/Introduction.md index 15e1978..b2d7668 100644 --- a/Introduction.md +++ b/Introduction.md @@ -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 的目录结构 Ubuntu 16.04 diff --git a/SUMMARY.md b/SUMMARY.md index 8387e31..ed0e92a 100644 --- a/SUMMARY.md +++ b/SUMMARY.md @@ -57,6 +57,11 @@ * [shell](shell.md) ## 实用 shell 例子 -* [demo](demo.md) +* [demo](demo.md) + +## 参考资料 +* [书籍](http://billie66.github.io/TLCL/book/) +* [网站](http://www.ywnds.com/) +* [网站](http://man.linuxde.net/)