Part 1 - Operating systems

0.0(0)
learnLearn
examPractice Test
spaced repetitionSpaced Repetition
heart puzzleMatch
flashcardsFlashcards
Card Sorting

1/32

encourage image

There's no tags or description

Looks like no tags are added yet.

Study Analytics
Name
Mastery
Learn
Test
Matching
Spaced

No study sessions yet.

33 Terms

1
New cards

What is an operating system?

A program that manages a computer's hardware. It also provides a basis for application programs and serves as an intermediary between the user and the hardware.

2
New cards

What does the OS provide?

- Abstraction

- Resource management

3
New cards

What is meant by abstraction when talking about what the OS provides?

That it provides a standard library for resources.

4
New cards

What are resources to an OS?

CPU, memory, disk etc.

5
New cards

What does the OS provide to the CPU in terms of abstraction?

Process and/or thread

6
New cards

What does the OS provide to the memory in terms of abstraction?

Address space

7
New cards

What does the OS provide to the disk in terms of abstraction?

Files

8
New cards

What are some advantages of having the OS provide abstraction?

- It separates interface and underlying hardware implementation

- It allows applications to reuse common facilities

- It makes different devices look the same

9
New cards

What is meant by resource management when talking about what the OS provides?

That the OS manages resources and shares them in a good manner

10
New cards

What are some advantages of having the OS provide resource management?

- Protects applications from one another

- Provides efficient access to resources (cost, time, energy)

- Provides fair access to resources

11
New cards

What are two key concepts that needs to be understood when talking about how resource management is built up in terms of what to do stuff and how to do stuff?

Policies and mechanisms

12
New cards

What are policies when talking about resource management?

It is standards that must be followed by different implementations of the resource management system (e.g. what to do)

13
New cards

What is an example of a policy in resource management?

Scheduling algorithms

14
New cards

What are mechanisms when talking about resource management?

It is how stuff decided by a policy is actually performed (e.g. how to do). An example of this is context switching where you switch the executing process using hardware/software

15
New cards

What is an example of a mechanism in resource management?

A scheduling algorithm is designed and implemented in a specific way

16
New cards

What are some techniques that can be deployed to manage increasing complexity in OS'?

- Modularity

- Abstraction

- Layering

- Hierarchy

17
New cards

What is the core of the OS called?

Kernel

18
New cards

What is the kernel responsible for?

It is responsible for providing secure access to the hardware and executing programs. This includes:

- Process management

- Device driver

- Memory management

- System calls

19
New cards

What are system calls?

Interface between a running program and the kernel

20
New cards

What provides a system call interface?

Run-time libraries

21
New cards

What are some characteristics of a system call interface?

System calls are associated with a number each. It then maintains a table indexed according to these numbers.

22
New cards

What are some common types of OS structures?

- Monolithic kernel

- Microkernel

- Hybrid kernel

23
New cards

What is a monolithic kernel?

The entire OS works in kernel space

24
New cards

What are some pros and cons of a monolithic kernel?

Pros: Good isolation, security

Cons: Reliability, inflexibility

25
New cards

What is a microkernel?

The entire OS works in kernel space apart from some services and modules that are put in the user space

26
New cards

What are some pros and cons of a microkernel?

Pros: Reliability, security, flexibility

Cons: Complexity, communication overhead

27
New cards

What is a hybrid kernel?

A combination of a monolithic kernel and a microkernel

28
New cards

What OS structure does Linux use?

A monolithic kernel

29
New cards

What type of OS structure does Apple OSs and Windows use?

Hybrid kernel

30
New cards

What are some techniques that a OS uses in order to be efficient and convenient to use?

- Virtualization

- Concurrency

- Persistence

31
New cards

What is virtualization?

Creates virtual representations of a CPU, memory, disk, servers etc.

32
New cards

What is concurrency?

Events are occurring simultaneously and may interact with one another

33
New cards

What is persistence?

Safely storing data on different storage devices (hard drive, solid etc.)