LQ1 - Operating Systems - Introduction

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

1/113

flashcard set

Earn XP

Description and Tags

Study Analytics
Name
Mastery
Learn
Test
Matching
Spaced

No study sessions yet.

114 Terms

1
New cards

operating system

program that acts as an intermediary between a computer user and computer hardware

2
New cards
  1. User

  2. Application Programs

  3. Operating System

  4. Computer Hardware

4 components of a computer system

3
New cards

kernel

The one program that runs at all times on the computer

4
New cards

system program

a type of program that is associated with the operating system, but is not part of the kernel

5
New cards

application program

a type of program not associated with the operating system

6
New cards

middleware

a set of software frameworks that provide services to application developers

7
New cards

operating system

it is a resource allocator and control program that efficiently uses HW and manages user program execution

8
New cards

shared computers

they must keep all users happy

9
New cards

dedicated systems

although they have dedicated resources, they still frequently use shared resources from servers

10
New cards

mobile devices

are resource poor, but optimized for usability and battery life

11
New cards

device controllers

connects through common bus to provide access to shared memory

12
New cards

true

true or false: I/O devices and CPU can execute concurrently?

13
New cards

operating system device driver

is found in each device controller type, in order to manage it

14
New cards

CPU

moves data from/to main memory to/from local buffers

15
New cards

local buffer

Each device controller has a ____ ____

16
New cards

interrupt

transfers control to the interrupt service routine

17
New cards

interrupt vector

It contains the addresses of all the service routines. It is the typical way to transfer control to the interrupt service routine.

18
New cards

trap or exception

a software-generated interrupt caused either by an error or a user request

19
New cards

interrupt

an operating system is _____ driven

20
New cards

it stores the registers and the program counter

how does the operating system preserve the state of the CPU?

21
New cards

interrupt handling

determines which type of interrupt has occurred. In this process, separate segments of code determine what action should be take for each type of interrupt.

22
New cards
  1. CPU: device driver initiates I/O

  2. I/O controller: initiates the I/O

  3. I/O controller: input ready, output complete, or error generates interrupt signal

  4. CPU: receives interrupt, transfer control to interrupt handler

  5. CPU: interrupt handler processes data, returns from interrupt

  6. CPU: resumes processing of interrupted task

Enumerate the interrupt-drive I/O Cycle in the correct order

23
New cards
  1. After I/O starts, control returns to user program only upon I/O completion

  2. After I/O starts, control returns to user program without waiting for I/O completion

What are the two methods for handling i/o?

24
New cards

system call

After I/O starts, control returns to user program without waiting for
I/O completion.

____ _____ requests to the OS to allow user to wait for I/O completion

25
New cards

device-status table

contains entry for each i/o device, indicating its type, address, and state

26
New cards

I/O device table

OS indexes into __ ___ __ to determine device status and to modify table entry to include interrupt

27
New cards

main memory

only large storage media that the CPU can access directly

28
New cards

main memory

is typically volatile and random access (in the form of dynamic random-access memory [DRAM]).

29
New cards

secondary storage

extension of main memory that provides large nonvolatile storage capacity

30
New cards

hard disk drives (HDD)

rigid metal or glass platters covered with magnetic recording material

31
New cards
  1. tracks

  2. sectors

disk surface is logically divided into ___, which are subdivided into ___

32
New cards

non-volatile memory (NVM) devices

faster than hard disks

33
New cards
  1. registers

  2. cache

  3. main memory

  4. nonvolatile memory

  5. hard-disk drives

  6. optical disk

  7. magnetic tapes

rank this according to the storage device hierarchy

  • cache

  • hard-disk drives

  • magnetic tapes

  • main memory

  • nonvolatile memory

  • optical disk

  • registers

34
New cards

caching

copying information into faster storage system

35
New cards

device driver

for each device controller to manage I/O. It provides uniform interface between controller and kernel.

36
New cards

direct memory access structure

used for high-speed I/O devices to be able to transmit information at close to memory speed

37
New cards

device controller

transfers blocks of data from buffer storage directly to main memory without CPU intervention

38
New cards

direct memory access structure

under this structure, only one interrupt is generated per block, rather than the one interrupt per byte

39
New cards

bootstrap program

simple code to initialize the system, load the kernel

40
New cards

system daemons

services provided outside of the kernel

41
New cards

operating system

starts the system daemons

42
New cards
  • software error

  • system call

types of software interrupt

43
New cards

system call

request for operating system service

44
New cards

multiprogramming

organizes jobs (code and data) so CPU always has one to execute

45
New cards

job scheduling

In multiprogramming, how is the one job selected ran?

46
New cards

interactive computing

is created when CPU switches jobs frequently to the point that users can interact with each job while it is running

47
New cards

dual mode (user mode and kernel mode) operation

allows OS to protect itself and other system components

48
New cards

mode bit

provides the ability to distinguish when system is running user code or kernel code

49
New cards

System call changes mode to kernel, return from call resets it to user

How to prevent user from explicitly setting the mode bit to kernel?

50
New cards

privileged

only executable in kernel mode

51
New cards

timer

prevents infinite loop (or process hogging resources)

52
New cards

process

a program in execution; a unit of work within the system.

53
New cards
  1. passive entity

  2. active entity

program is a ____ _____, whereas process is an ____ ____

54
New cards

false

true or false: process termination does not require the reclaim of any reusable resources

55
New cards

program counter

single threaded process has one ____ ____ that specifies the location of the next instruction to execute

56
New cards

multi-threaded process

has one program counter per thread

57
New cards

process management

the operating system is responsible for the following activities in connection with ____ ____:

  1. Creating and deleting both user and system processes

  2. Suspending and resuming processes

  3. Providing mechanisms for process synchronization

  4. Providing mechanisms for process communication

  5. Providing mechanisms for deadlock handling

58
New cards

true

true or false: to execute a program, all (or part) of the instructions must be in memory

59
New cards

memory management

determines what is in memory and when

60
New cards

memory management activities

includes:

  • keeping track of which parts of memory are currently being used and by whom

  • deciding which processes (or parts thereof) and data to move into and out of memory

  • allocating and de-allocating memory space as needed

61
New cards

file

abstracts physical properties to local storage unit

62
New cards

access control

allows for the determination of who can access what

63
New cards

OS activities

include:

  • creating and deleting files and directories

  • primitives to manipulate files and directories

  • mapping files onto secondary storage

  • backup files onto stable (non-volatile) storage media

64
New cards

caching

information in use copied from slower to faster storage temporarily

65
New cards

false

true or false: must not be careful to use most recent value, no matter where it is stored in the storage hierarchy

66
New cards

cache coherency

multiprocessor environment must provide ____ ____ in hardware such that all CPUs have the most recent value in their cache

67
New cards

I/O subsystem

is responsible for

  • memory management of I/O

  • general device-driver interface

  • drivers for specific hardware devices

68
New cards

protection

any mechanism for controlling access of processes or users to resources defined by the OS

69
New cards

security

defense of the system against internal and external attacks

70
New cards

user identities

include name and associated number, one per user

71
New cards

group identifier

allows set of users to be defined and controls managed, then also associated with each process and file

72
New cards

privilege escalation

allows user to change to effective id with more rights

73
New cards

virtualization

allows operating systems to run applications within other OSes

74
New cards

emulation

used when source CPU type different from target type. It is generally the slowest method.

75
New cards

interpretation

is used when computer language not compiled to native code

76
New cards

virtualization

OS natively compiled for CPU, running guest OSes which is also natively compiled

77
New cards

virtual machine manager

provides virtualization services

78
New cards

distributed systems

collection of separate, possibly heterogeneous, system networked together

79
New cards

network

is a communications path

80
New cards

TCP/IP

the most common network type

81
New cards
  • Local Area Network (LAN)

  • Wide Area Network (WAN)

  • Metropolitan Area Network (MAN)

  • Personal Area Network (PAN)

types of networks:

82
New cards

network operating system

provides features between systems across networks, wherein there is an illusion of a single system

83
New cards

false

most systems use a single general-purpose processor

true or false: most systems use multiple general-purpose processors

84
New cards

multiprocessor system

also known as parallel systems and tightly-coupled systems, they are systems which are growing in use and importance because of their increased throughput, economy of scale, and increased reliability.

85
New cards

asymmetric multiprocessing

a multiprocessor system with each processor assigned a specific task

86
New cards

symmetric multiprocessing

a multiprocessor system with each processor performing all tasks

87
New cards

clustered systems

  • similar to multiprocessor systems, but with multiple systems working together.

  • it provides high-availability service which survives failures

  • it usually shares storage using storage-area network (SAN)

88
New cards

asymmetric clustering

a clustered system where there is one machine in hot-standby mode

89
New cards

symmetric clustering

has multiple nodes running applications, monitoring each other

90
New cards

traditional computing environment

  • stand-alone general purpose machines

  • it is blurred as most systems interconnect with others through the internet

91
New cards

portals

provide web access to internal systems

92
New cards

network computers (thin clients)

are like web terminals

93
New cards

wireless networks

mobile computers interconnect via ___ ____

94
New cards

mobile computing environment

  • has OS features like GPS, gyroscope, and allows for augmented reality.

  • IEEE 802.11 wireless or cellular data networks for connectivity

95
New cards

client server computing

dumb terminals supplanted by smart PCs, wherein system servers as a response to client requests

96
New cards

compute-server system

provides an interface to client to request services

97
New cards

file-server system

provides interface for clients to store and retrieve files

98
New cards

peer-to-peer

  • another model of distributed system.

  • it does not distinguish between clients and servers, instead all nodes are considered peers.

99
New cards

discovery protocol

nodes broadcast request for service and respond to requests for service via ___ ___

100
New cards

cloud computing environment

delivers computing, storage, even app as a service across a network