forked from cs-pub-ro/operating-systems
-
Notifications
You must be signed in to change notification settings - Fork 0
/
config.yaml
157 lines (153 loc) · 5.6 KB
/
config.yaml
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
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
stages:
- make_assets
- embed_reveal
- docusaurus
build_dir: /build
output_type: last
output_dir: /output
make_assets:
plugin: command
options:
command: make
locations:
- content/chapters/software-stack/lecture
- content/chapters/data/lecture
- content/chapters/compute/lecture
- content/chapters/io/lecture
- content/chapters/app-interact/lecture
args:
- all
embed_reveal:
plugin: reveal_embed
options:
target: docusaurus
extension: mdx
build:
Software-Stack: slides/Software-Stack
Data: slides/Data
Compute: slides/Compute
IO: slides/IO
Application-Interaction: slides/Application-Interaction
docusaurus:
plugin: docusaurus
options:
course_name: SO
sidebar: js
structure:
- Introduction: content/landing-page/README.md
- Lecture:
path: /build/embed_reveal
subsections:
- Software Stack: Software-Stack/Software-Stack.mdx
- Data: Data/Data.mdx
- Compute: Compute/Compute.mdx
- IO: IO/IO.mdx
- Application Interaction: Application-Interaction/Application-Interaction.mdx
- Lab:
- Setting up the Lab Environment: content/misc/lab-setup.md
- Software Stack:
path: content/chapters/software-stack/lab/content
extra:
- ../media
- ../quiz
subsections:
- Overview: overview.md
- Modern Software Stacks: modern-sw-stack.md
- Basic System Calls: basic-syscall.md
- System Call Wrapper: syscall-wrapper.md
- Common Functions: common-functions.md
- Libc: libc.md
- Static-dynamic: static-dynamic.md
- Libcall-Syscall: libcall-syscall.md
- High-Level Languages: high-level-lang.md
- App Investigation: app-investigate.md
- Arena: arena.md
- Data:
path: content/chapters/data/lab/content
extra:
- ../quiz
subsections:
- Overview: overview.md
- Working with Memory: working-memory.md
- Process Memory: process-memory.md
- Investigate Memory: investigate-memory.md
- Memory Security: memory-security.md
- Arena: arena.md
- Compute:
path: content/chapters/compute/lab/content
extra:
- ../media
- ../quiz
subsections:
- Overview: overview.md
- Hardware Perspective: hardware-perspective.md
- Processes: processes.md
- Threads: threads.md
- Processes-threads-apache2: processes-threads-apache2.md
- Copy-on-Write: copy-on-write.md
- Synchronization: synchronization.md
- User-Level Threads: user-level-threads.md
- Arena: arena.md
- IO:
path: content/chapters/io/lab/content
extra:
- ../media
- ../quiz
subsections:
- Overview: overview.md
- File Handlers: file-handlers.md
- File Descriptors: file-descriptors.md
- Redirections: redirections.md
- Pipes: pipes.md
- Local IO in Action: local-io-in-action.md
- Remote IO: remote-io.md
- Networking 101: networking-101.md
- Client-Server Model: client-server-model.md
- Beyond Network Sockets: beyond-network-sockets.md
- File Mappings: file-mappings.md
- IO Internals: io-internals.md
- Zero-Copy: zero-copy.md
- Asynchronous IO: async-io.md
- IO Multiplexing: io-multiplexing.md
- Arena: arena.md
- Application Interaction:
path: content/chapters/app-interact/lab/content
extra:
- ../media
- ../quiz
subsections:
- Overview: overview.md
- Time Server: time-server.md
- Password Cracker: password-cracker.md
- The X Window System: x-window-system.md
- D-Bus: dbus.md
- OS Cloud: os-cloud.md
- Arena: arena.md
- Assignments:
path: content/assignments
# These all have the same filename so we need to create separate
# subdirectories for them, otherwise they will overwrite each other.
# (See the trailing slash in the path.)
subsections:
- Mini Libc/: mini-libc/
- Memory Allocator/: memory-allocator/
- Parallel Graph/: parallel-graph/
- Mini Shell/: minishell/
- Asynchronous Web Server/: async-web-server/
static_assets:
- slides/Compute: /build/make_assets/content/chapters/compute/lecture/_site
- slides/Software-Stack: /build/make_assets/content/chapters/software-stack/lecture/_site
- slides/Data: /build/make_assets/content/chapters/data/lecture/_site
- slides/IO: /build/make_assets/content/chapters/io/lecture/_site
- slides/Application-Interaction: /build/make_assets/content/chapters/app-interact/lecture/_site
config_meta:
title: Operating Systems
url: http://localhost/
baseUrl: /operating-systems/
onBrokenLinks: warn
onBrokenMarkdownLinks: warn
config_socials:
Main site: https://curs.upb.ro
OCW: https://ocw.cs.pub.ro/courses/so
Facebook: https://www.facebook.com/sisteme.de.operare/
copyright_string: SO Team