summaryrefslogtreecommitdiff
path: root/1 Projects/OSTEP/Three main areas OSTEP.md
diff options
context:
space:
mode:
authorJasper Ras <jras@hostnet.nl>2025-03-20 11:07:49 +0100
committerJasper Ras <jras@hostnet.nl>2025-03-20 11:07:49 +0100
commit80ccf68f55dbb70d7e5ed52ee95b3c9d1b6ce264 (patch)
tree93e28e85ab70052aa6f577998ec7dc1f413b40c0 /1 Projects/OSTEP/Three main areas OSTEP.md
parent9642cd7ae24f0ba79ce5647c709b35ae8f06a285 (diff)
vault backup: 2025-03-20 11:07:48
Diffstat (limited to '1 Projects/OSTEP/Three main areas OSTEP.md')
-rw-r--r--1 Projects/OSTEP/Three main areas OSTEP.md28
1 files changed, 28 insertions, 0 deletions
diff --git a/1 Projects/OSTEP/Three main areas OSTEP.md b/1 Projects/OSTEP/Three main areas OSTEP.md
new file mode 100644
index 0000000..96e1046
--- /dev/null
+++ b/1 Projects/OSTEP/Three main areas OSTEP.md
@@ -0,0 +1,28 @@
+---
+tags:
+ - ostep
+---
+OS -> manages resources : ram, cpu & disk. Exposes library to interact with said resources.
+
+**Virtualisation**: a process has the illusion of having seemingly infinite of a finite physical resource all to itself.
+
+CPU virtualisation: turn the CPU into seemingly infinite.
+RAM virtualisation: divides physical ram into spaces and allocates a space to process. This space is called address space.
+
+==Why? Easier to use.==
+==How? Good question. What mechanisms & policies? How to do it efficiently? What hardware support is needed?==
+**^ Later notities linken die dit beantwoorden**.
+
+**Concurrency**: doing more than one thing at a time. Leads to deep problem. Atomicity; 1 thing at a time.
+Incrementing is not atomic; 3 processor instructions. Process can be switched during any of these.
+
+==How to build a correct program? What primitives are needed from the OS? What hardware support is needed?==
+
+**Persistence**: store data that isn't gone after a power cycle.
+I/O device: HDD/SSD
+File system: part of OS that manages disks
+Disk not virtualised: files want to be shared between processes.
+
+==How to do it correctly? What mechanisms or policies are required to do it with high performance? What methods are used to provide reliability in the face of hardware and software failure?==
+
+https://github.com/remzi-arpacidusseau/ostep-projects \ No newline at end of file