-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
203 lines (174 loc) · 5.75 KB
/
index.html
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
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Oprating System</title>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/font/bootstrap-icons.css">
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-GLhlTQ8iRABdZLl6O3oVMWSktQOp6b7In1Zl3/Jr59b6EGGoI1aFkw7cmDA6j6gD" crossorigin="anonymous">
</head>
<body dir="rtl">
<h1 class="text-center my-5">جدول محتوا</h1>
<table class="table my-5 table-dark table-bordered table-hover">
<thead>
<tr>
<th>عنوان</th>
<th>لینک</th>
</tr>
</thead>
<tbody>
<tr>
<td>جلسه اول</td>
<td><a href="./Lecture-1/lecture-1.htm">مشاهده</a></td>
</tr>
<tr>
<td> جلسه دوم (بخش اول)</td>
<td><a href="./Lecture-2/Lecture-2-1.htm">مشاهده</a></td>
</tr>
<tr>
<td>جلسه دوم (بخش دوم)</td>
<td><a href="./Lecture-2/Lecture-2-2.htm">مشاهده</a></td>
</tr>
<tr>
<td>جلسه سوم</td>
<td><a href="./Lecture-3/Lecture-3.htm">مشاهده</a></td>
</tr>
<tr>
<td>جلسه چهارم</td>
<td><a href="./Lecture-4/Lecture-4.htm">مشاهده</a></td>
</tr>
<tr>
<td>جلسه پنجم</td>
<td><a href="./Lecture-5/Lecture-5.htm">مشاهده</a></td>
</tr>
<tr>
<td>جلسه ششم</td>
<td><a href="./Lecture-6/Lecture-6.htm">مشاهده</a></td>
</tr>
<tr>
<td>جلسه هفتم</td>
<td><a href="./Lecture-7/Lecture-7.htm">مشاهده</a></td>
</tr>
<tr>
<td>جلسه هشتم</td>
<td><a href="./Lecture-8/Lecture-8.htm">مشاهده</a></td>
</tr>
</tbody>
</table>
<pre style="direction:ltr">
Lecture 1 topics:
Definition of OS
use of os
services that os provide
File management
Program development
Program execution
I/O Management
Debugging
Accounting
Access Control
Multi Programming
Time Sharing and multi Tasking
Job Pool and Job scheduler
Virtual Memory
Swap
Job Scheduling
Process and program
Lecture 2 topics:
Interactive and batch os
buffering and spooling
Multi Process (summetric and asymmetric)
Distributed and RealTime(Soft-Hard)
Process Management
File Management
I/O management
Storage Management
Memory Management
Operating System Architecture
Monolithic os
Layered Os
Micro kernel
Modules
Virtual Machine
Client-Server
Hybrid Os
Lecture 3 topics:
Process Status
New
Ready
Wait - Suspend
Terminate
Running
I/O and CPU Burst
Scheduling
Schedulers in OS
Long Term Scheduler
Middle Term Scheduler
Short Term Scheduler
I/O Scheduler
CPU scheduling
Preemptive and Non Preemptive Scheduling
Interrupt
Internal interrupts (Trap)
External interrupts (Hw)
software interrupts svc
Dispatcher
Dispatch Latency
The criteria for scheduling.
Lecture 4 topics:
Scheduling algorithms
First come First Serve
Shortest Job First - Shortest-remaining-time-first
FIFO
PCB
Convoy Effect
Lecture 5 topics:
Priority scheduling
indefinite Blocking
Starvation
(Round Robin) RR
Context Switch
Multilevel queue
Multilevel feedback queue
Aging
lecture 6 topics:
Storage hierarchy
register
cache
memory
disk cache
optical disk
usb etc
Paging
Base Hardware
Address binding
Physical and logical Address
logical and physical address space
mmu
swapping
Contiguous Memory allocation
Memory Allocation
Memory Allocation Algorithm
First-Fit
Best-Fit
Wors-Fit
Next-Fit
External Fragmentation
Internal Fragmentation
compaction
</pre>
<div class="info mt-5 d-flex flex-column justify-content-center align-items-center">
<p>Follow my Social Networks</p>
<div class="d-flex justify-content-center align-items-center">
<a href="https://github.com/alisharify7" class="mx-2 fs-2">
<i class="bi bi-github"></i>
</a>
<a href="https://twitter.com/alisharify7" class="mx-2 fs-2">
<i class="bi bi-twitter"></i>
</a>
</div>
</div>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js" integrity="sha384-w76AqPfDkMBDXo30jS1Sgez6pr3x5MlQ1ZAGC+nuZB+EYdgRZgiwxhTBTkF7CXvN" crossorigin="anonymous"></script>
</body>
</html>