Operating Systems Lecture 1

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

1/52

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.

53 Terms

1
New cards

What is an OS

An Operating System (OS) is a PROGRAM that acts as an interface between a USER of a computer system and the COMPUTERHARDWARE

2
New cards

What is a Kernal

a part of OS: a program that is running all the time on the computer

The kernel runs all the time and provides services to the system and its users.

- System programs are loaded and start running at boot time

- System programs that are running are called system processes or daemon.

3
New cards

Main Purpose of an OS

1) To provide an environment for a user to execute programs conveniently and efficiently

2) To simulate features not available on hardware

3) 3) To control all computer resources and provide the base at which the application programs can be written and run

4
New cards

What does a general purpose computer system contain?

One or more Central Processing Unit (CPU): the 'brain' of the system- Memory system- Input/output (I/O) devices, e.g., disks, printers

5
New cards

What is a bootstrap

An initial program to start running when a computer is powered on, and rebooted

-The bootstrap can be stored in a hardware (called firmware)

The bootstrap program initializes all aspects of computer system, e.g., CPU registers, Memory content, Device controllers

The bootstrap program knows how to locate the OS kernel, - The program will load kernel in memory, and run i

6
New cards

What is an interrupt mechanism?

The CPU waits for something to occur, the CPU stops what it is doing when it receives an 'interrupt'

It goes to a location to execute, the location is stored in an interrupt vector table.

7
New cards

Is an OS interrupt driven?

Yes

8
New cards

How does an interrupt work?

It goes to a specific location to execute the interrupt service routine (ISR), the location is stored in an interrupt vector table.

The table contains addresses and pointers of all ISR's

Each interrupt is known by an interrupt number, the lower the number the higher the priority.

The CPU resumes its execution on the completion of each ISR.

9
New cards

What is an interrupt controller?

Efficient interrupt handling is required for good system performance. The solution is to use a interrupt-controller hardware. It can defer interrupt handling during critical processing, it provides efficient dispatch to interrupt handler, it supports multi level interrupts with priority.

Thus the CPU can defer lower priority interrupts when a high priority is being served.

10
New cards

What are the 3 times the OS interacts with the interrupt mechanism? And what does it do?

1. At boot time: OS probes the hardware buses to see what devices are present and installs the required interrupt handlers into the interrupt vector

2. During I/O : Various devices raise interrupts to indicate: They are ready to provide service, have completed output, the input data is available or a failure has been detected.

3. During interaction with processes/programs

11
New cards

What is the storage structure?

knowt flashcard image
12
New cards

What are the steps of the Execution Cycle in the Von Neumann Architecture

  1. 1. Fetch an instruction from memory and stores it in a register

    1. - The register is called an instruction register

  2. 2. Decode the instruction

  3. 3. If the instruction needs operands, fetch the operands from memory and store them in internal registers

  4. 4. Execute the instruction, and the results in memory

  5. 5. Repeat steps

13
New cards

What is secondary storage?

An extension of main memory, it provides non-volatile storage and a large capacity, the most common is a hard disk.

14
New cards

What is a magnetic disk?

A rigid metal or glass platter covered in magnetic recording material, it is divided into circular tracks, which are subdivided into sectors, the set of tracks that are in one arm forms a cylinder. The disk uses a disk head to read and write.

15
New cards

What are the two parts of disk speed? and what are they?

Transfer Rate: the rate at which data flow between the drive and computer (in MB per second).

Random Access Time = seek time + rotational latency

  • - Seek time: the time to move the disk arm to the desired cylinder

  • - Rotational Latency: the time for the desired sector to rotate to the disk head.

16
New cards

Describe the look of a disk mechanism

knowt flashcard image
17
New cards

What is an I/O

An I/O device communicated with a computer system by sending signals via a cable or wireless via a port.
Each I/O device has an address.

18
New cards

What are the 4 registers for data and control signals in I/O

 Status register: contains bits indicating states of the device

 Control register: written by host to start a command or change the mode of a device

 Data-in register: read by host to get input

 Data-out register: written by host to send output

19
New cards

Describe the I/O structure

knowt flashcard image
20
New cards

How does the Host communicate with an I/O controller?

  • Polling: Used to determine the state of a device (check if its available)

  • Interrupt

  • Direct Memory Access

21
New cards

Is polling more efficient than interrupts?

Only if the device and its controller are fast, when polling isn’t efficient use an interrupt

22
New cards

What the 3 basic steps of an interrupt mechanism?

  1. 1. Device controller raises and interrupt by asserting a signal on the CPUs interrupt request line

  2. 2. CPU catches the interrupt and dispatches the interrupt to its own interrupt service routing (ISR)

  3. 3. ISR clears the interrupt by servicing the device

<ol><li><p>1. Device controller raises and interrupt by asserting a signal on the CPUs interrupt request line</p></li><li><p>2. CPU catches the interrupt and dispatches the interrupt to its own interrupt service routing (ISR)</p></li><li><p>3. ISR clears the interrupt by servicing the device</p></li></ol><p></p>
23
New cards

What is Direct Memory Access (DMA)

DMA is used to improve the performance of large data transfers. It uses a special purpose processor (DMA controller), DMA bypasses the CPU to transfer data directly between I/O device and memory. Concurrently the CPU goes on with other work.

24
New cards

What information must the CPU give to the DMA controller?

  • 1. A pointer to the source/address of the data being transferred

  • 2. A pointer to the destination/address of the transfer

  • 3. A count of the number of bytes to be transferred.

25
New cards

How many interrupts does the entire DMA process take?

1

26
New cards

What are the steps of a DMA transfer?

knowt flashcard image
27
New cards

What is the difference between a single processor system and a multi processer system?

  • - A single processor system contains only one CPU to execute general purpose instructions

  • - A multi processor system contains two or more processors working together.

28
New cards

What are the 3 advantages of a multiprocessor system?

  • 1. Increased Throughput: get more work done in less time

    2. Economy of scale: I/O devices, memory storage and power supplies can be shared.

  • 3. Increased reliability: failure of one processor does not bring the whole system own

    • - Graceful degradation: the system can preform operations proportional to the level of operations of the surviving parts of the system.

    • - Fault tolerant: the system can continue its function in the event of component failures.

29
New cards

What are the two types of multiprocessor systems?

  • - Asymmetric multiprocessing: use a master processor to schedule/allocate work to slave processor

  • - Symmetric multiprocessing: each processor runs and identical copy of the OS, Each processor has its own registers and cache.

30
New cards

What is a multicore system?

Is a multiprocessor system but the processors are on a single chip. This is more efficient since on-chip communication is faster than interchip communication.

31
New cards

What is the goal of multiprogramming?

To increase CPU utilization. Several jobs are kept in main memory at the same time, and the CPU is multiplexed among them.

32
New cards

What OS features are required for multiprogramming?

  1. 1. Job Scheduling: OS chooses jobs and puts them into memory

  2. 2. Memory Management: OS allocates memory for each job

  3. 3. CPU Scheduling: OS chooses one among the jobs in memory that is ready to run

    1. 4. I/O allocation

33
New cards

What is the goal of Time-Sharing/Multi-tasking systems?

to provide interactive use of computer systems at a reasonable cost. It is a variant of multiprogramming where user input is from on-line terminal

34
New cards

What additional OS features are needed?

  1. - On-line communication between users and system

    - On-line file system, for users to access data and code.

35
New cards

What are the 2 types of real time systems?

  • - Hard real time system: It guarantees that tasks complete on time, it is often used as a control deice in a dedicated application (medical imaging)

  • - Soft real-time system: It sets a critical time task higher priority over others until it completes. useful in applications like multimedia.

36
New cards

What is virtualisation?

Virtualization technology allows an OS to run as applications on other OS. Often referred to as emulation.

37
New cards

What is Dual-Mode operation?

Hardware provides at least two modes of operation:

  • - User mode: user programs run in this mode

    - Monitor mode: referred also as privileged mode, user programs are not allowed to run in this mode.

38
New cards

What happens in dual mode operation?

  • - The hardware provides some privileged instructions

  • - A privelaged instruction can be executed only in monitor mode

  • - At system boot-time the hardware starts in monitor mode

  • - OS starts user processes in user mode

  • - When an interrupt or fault occurs hardware switches to monitor mode.

39
New cards

Are ALL I/O instructions privelaged?

Yes

40
New cards

How does the user perform I/O

a system call

41
New cards

What is the base register?

It holds the starting address of physical memory address for the program

42
New cards

What is the limit register?

It contains the size of the memory range for the program

43
New cards

How does the OS stop one program from using the CPU all the time and why?

It uses a timer interrupt after a specific period of time to ensure OS maintains control, This is in case a program is stuck in an infinite loop.

44
New cards

What is an Application Program Interface (API)

a set of functions available to an application programmer.

45
New cards

What is a system call?

A user interface to OS services, it is used to ask the OS to execute some instructions that can be run only in monitor mode.

It is known by its number.

46
New cards

What are the 3 system call results?

Normal termination (exit or return)

Terminate current program and return the command interpreter

Abnormal termination - program error

47
New cards

What are system programs?

A convenient environment for program development and execution.

48
New cards

What are ways system programs can be divided?

– File manipulation: Create, delete, copy, rename, print, dump, list

– Status information: Date, time, memory, disk space, number of users

– File modification: Text editors to create and modify content of files

– Programming-language support: Compilers, interpreters, assemblers

– Program loading and execution: Absolute, Relocatable, Overlay loaders

– Communication: Programs that provide the mechanism for creating virtual connections among processes, users, and different computer system

49
New cards

What are the 4 types of OS structures?

Simple Structure/Monolithic

Layered Approach

Microkernels

Modules

50
New cards

What is a Monolithic structure? what are the advantages and disadvantages?

Kernel consists of everything below the system-call interface and above the physical hardware

Disadv: it contains many functions in one level - difficult to implement, maintain, and extend

Adv: little overhead in system call, and fast communication within kernel processes

51
New cards

What is the layered approach structure? what are the advantages and disadvantages?

The OS is divided into several layers, each layer is built on top of lower layers. Layers are then selected such that each layer uses functions and services of only lower layers

 Advantage: Modularity- easy to debug  Disadvantage: less efficient, hard to define level functionality

<p>The OS is divided into several layers, each layer is built on top of lower layers. Layers are then selected such that each layer uses functions and services of only lower layers </p><p></p><p> Advantage: Modularity- easy to debug  Disadvantage: less efficient, hard to define level functionality</p>
52
New cards

What is the Microkernal structure? what are the advantages and disadvantages?

It has smaller sized kernel, the kernel functions as a communication facility between a client and the OS services using message passing

Advantages:  Easier to extend OS  More portable  Better security and reliability

Disadvantages:  Using message passing increases system function overhead, and thus reduces performance

<p>It has smaller sized kernel, the kernel functions as a communication facility between a client and the OS services using message passing</p><p></p><p>Advantages:  Easier to extend OS  More portable  Better security and reliability </p><p>Disadvantages:  Using message passing increases system function overhead, and thus reduces performance</p>
53
New cards

What is the Modules structure? what are the advantages and disadvantages?

It is a modular kernel and uses object oriented program techniques.

The kernel has a set of core components, it is like the layered system but more flexible and like the microkernel but more efficient