forked from ustclug/Linux101-docs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmkdocs.yml
90 lines (83 loc) · 2.81 KB
/
mkdocs.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
site_name: Linux 101
site_description: Linux 101 课程讲义
site_author: LUG@USTC
#site_url: https://101.lug.ustc.edu.cn/
repo_name: ustclug/Linux101-docs
repo_url: https://github.com/ustclug/Linux101-docs
copyright: Brought to you by <a href="https://lug.ustc.edu.cn/">LUG@USTC</a>. Available freely under the <a href="https://creativecommons.org/licenses/by-sa/4.0/">CC BY-SA 4.0 license</a>.
theme:
name: 'material'
language: 'zh'
icon:
logo: fontawesome/brands/linux
repo: octicons/mark-github-16
markdown_extensions:
- admonition
- attr_list
- codehilite
- footnotes
- pymdownx.details
- pymdownx.superfences
- markdown.extensions.def_list
- attr_list
- toc:
permalink: true
extra:
social:
- icon: octicons/globe-16
link: https://lug.ustc.edu.cn/
extra_javascript:
- 'https://cdn.jsdelivr.net/npm/[email protected]/dist/jquery.min.js'
# 'https://cdn.jsdelivr.net/npm/@fortawesome/fontawesome-free@5/js/all.min.js'
extra_css:
- 'css/extra.css'
google_analytics:
- 'UA-160637954-1'
- 'auto'
nav:
- 负一:计划规格:
- 章节编写指导: Spec/writing.md
- 演示文稿规格: Spec/slide.md
- 序: preface.md
- 零:欢迎:
- 欢迎: index.md
- 记号约定: notations.md
- 功劳簿: credits.md
- 一:初识 Linux:
- 讲义: Ch01/index.md
- 拓展阅读: Ch01/supplement.md
- 思考题解答: Ch01/solution.md
- 二:个性化配置与建站体验:
- 讲义: Ch02/index.md
- 拓展阅读: Ch02/supplement.md
- 思考题解答: Ch02/solution.md
- 三:软件安装与文件操作:
- 讲义: Ch03/index.md
- 拓展阅读: Ch03/supplement.md
- 思考题解答: Ch03/solution.md
- 四:进程、前后台、服务与例行性任务:
- 讲义: Ch04/index.md
- 拓展阅读: Ch04/supplement.md
- 思考题解答: Ch04/solution.md
- 五:用户与用户组、文件权限、文件系统层次结构:
- 讲义: Ch05/index.md
- 拓展阅读: Ch05/supplement.md
- 思考题解答: Ch05/solution.md
- 六:网络下载工具与 Shell 脚本:
- 讲义: Ch06/index.md
- 拓展阅读: Ch06/supplement.md
- 思考题解答: Ch06/solution.md
- 七:Linux 上的编程:
- 讲义: Ch07/index.md
- 拓展阅读: Ch07/supplement.md
- 八:Docker:
- 讲义: Ch08/index.md
- 拓展阅读: Ch08/supplement.md
- 九:Shell 文字处理工具与正则表达式:
- 讲义: Ch09/index.md
- 拓展阅读: Ch09/supplement.md
- 附录:
- 词汇表: Appendix/glossary.md
- man 文档的一些示例: Appendix/man.md
- 其他的 Linux 发行版:技术差异简介: Appendix/distribution.md
- 跋: postface.md