Skip to content

Commit 1308df1

Browse files
update lec1/p1-intro, add slide-lists.md
1 parent 78b1521 commit 1308df1

2 files changed

Lines changed: 110 additions & 2 deletions

File tree

lec1/p1-intro.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -43,17 +43,18 @@ backgroundColor: white
4343
- 向勇 陈渝 李国良 任炬
4444

4545
### 助教
46-
- 郑友捷、苏明贤、岳凯、吴泽文、黄旺、卢军
46+
- 郑友捷、苏明贤、谢祖钧、朱懿、卢军、闭浩扬
4747

4848
---
4949

5050
## 上课信息
5151

5252
### 上课时间地点
5353
- 时间
54-
- 周一 9:50-12:15
54+
- 周一 9:50-12:15(陈/李课堂)
5555
- 周三 9:50-12:15(任炬课堂)
5656
- 地点
57+
- 陈渝:舜德/经管西楼302
5758
- 李国良:舜德/经管西楼301
5859
- 任炬:六教6A216
5960

slide-lists.md

Lines changed: 107 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,107 @@
1+
---
2+
marp: true
3+
theme: default
4+
paginate: false
5+
---
6+
7+
<style>
8+
section {
9+
font-size: 14px;
10+
}
11+
h1 {
12+
font-size: 22px;
13+
}
14+
</style>
15+
16+
# 操作系统课程幻灯片导航
17+
18+
<table>
19+
<tr>
20+
<td valign="top" width="25%">
21+
22+
**第1讲 操作系统概述**
23+
- [p1-intro](lec1/p1-intro.html)
24+
- [p2-whatisos](lec1/p2-whatisos.html)
25+
- [p3-oshistory](lec1/p3-oshistory.html)
26+
- [p4-osarchitecture](lec1/p4-osarchitecture.html)
27+
- [p5-tryunix](lec1/p5-tryunix.html)
28+
29+
**第2讲 实验环境与启动**
30+
- [p1-labintro](lec2/p1-labintro.html)
31+
- [p2-compiling](lec2/p2-compiling.html)
32+
- [p3-boot](lec2/p3-boot.html)
33+
- [p4-lab1](lec2/p4-lab1.html)
34+
35+
**第3讲 操作系统视角的硬件架构**
36+
- [p1-osviewarch](lec3/p1-osviewarch.html)
37+
- [p2-osviewrv](lec3/p2-osviewrv.html)
38+
- [p3-batchos](lec3/p3-batchos.html)
39+
40+
</td>
41+
<td valign="top" width="25%">
42+
43+
**第4讲 多道程序与分时多任务**
44+
- [p1-multiprog](lec4/p1-multiprog.html)
45+
- [p2-labs](lec4/p2-labs.html)
46+
47+
**第5讲 内存管理**
48+
- [p1-memintro](lec5/p1-memintro.html)
49+
- [p2-memalloc](lec5/p2-memalloc.html)
50+
- [p3-labs](lec5/p3-labs.html)
51+
52+
**第6讲 虚拟存储**
53+
- [p1-vmoverview](lec6/p1-vmoverview.html)
54+
- [p2-localpagereplace](lec6/p2-localpagereplace.html)
55+
- [p3-globalpagereplace](lec6/p3-globalpagereplace.html)
56+
57+
**第7讲 进程管理与调度**
58+
- [p1-process-overview](lec7/p1-process-overview.html)
59+
- [p2-sched](lec7/p2-sched.html)
60+
- [p3-realtime](lec7/p3-realtime.html)
61+
- [p4-labs](lec7/p4-labs.html)
62+
63+
</td>
64+
<td valign="top" width="25%">
65+
66+
**第8讲 多处理器调度**
67+
- [p1-multiprocessor-overview](lec8/p1-multiprocessor-overview.html)
68+
- [p2-multiprocessor-sched-overview](lec8/p2-multiprocessor-sched-overview.html)
69+
- [p3-linux-O1-sched](lec8/p3-linux-O1-sched.html)
70+
- [p4-linux-cfs-sched](lec8/p4-linux-cfs-sched.html)
71+
- [p5-linux-bfs-sched](lec8/p5-linux-bfs-sched.html)
72+
73+
**第9讲 文件系统**
74+
- [p1-fsoverview](lec9/p1-fsoverview.html)
75+
- [p2-fsimplement](lec9/p2-fsimplement.html)
76+
- [p3-fsjournal](lec9/p3-fsjournal.html)
77+
- [p4-fs-lab](lec9/p4-fs-lab.html)
78+
79+
**第10讲 进程间通信**
80+
- [p1-ipcoverview](lec10/p1-ipcoverview.html)
81+
- [p2-ipclabs](lec10/p2-ipclabs.html)
82+
83+
</td>
84+
<td valign="top" width="25%">
85+
86+
**第11讲 线程与协程**
87+
- [p1-thread](lec11/p1-thread.html)
88+
- [p2-coroutine](lec11/p2-coroutine.html)
89+
- [p3-labs](lec11/p3-labs.html)
90+
- [p4-taskmodel](lec11/p4-taskmodel.html)
91+
92+
**第12讲 同步与互斥**
93+
- [p1-syncmutex](lec12/p1-syncmutex.html)
94+
- [p2-semaphore](lec12/p2-semaphore.html)
95+
- [p3-monitor-cond](lec12/p3-monitor-cond.html)
96+
- [p4-instances](lec12/p4-instances.html)
97+
- [p5-deadlock](lec12/p5-deadlock.html)
98+
- [p6-labs](lec12/p6-labs.html)
99+
100+
**第13讲 设备管理**
101+
- [p1-devinterface](lec13/p1-devinterface.html)
102+
- [p2-disk](lec13/p2-disk.html)
103+
- [p3-labs](lec13/p3-labs.html)
104+
105+
</td>
106+
</tr>
107+
</table>

0 commit comments

Comments
 (0)