Fundamental Concepts of Operating Systems

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

1/162

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.

163 Terms

1
New cards

Operating System

A layer of abstraction between Hardware and Software

Acts as a "virtual machine" - emulates a machine making it easier for the software to do operations - a resource coordinator, and reactive system

A collection of programs that integrate the hardware resources of the computer and make those resources available to the use in a productive, timely, and efficient manner

<p>A layer of abstraction between Hardware and Software</p><p>Acts as a "virtual machine" - emulates a machine making it easier for the software to do operations - a resource coordinator, and reactive system</p><p>A collection of programs that integrate the hardware resources of the computer and make those resources available to the use in a productive, timely, and efficient manner</p>
2
New cards

Batch Processing

Processes jobs in groups without user interaction.

3
New cards

SPOOLing

Simultaneous Peripheral Operation On-Line.

Reads jobs ahead onto disk for efficiency.

4
New cards

Multiprogrammed Systems

-Provides increased utilization

-Keeps several jobs in memory simultaneously

-I/O processing of one job overlaps with computation of another

-Needs CPU scheduling

-Makes sure the CPU is always busy

5
New cards

Time Sharing Systems

Allows multiple users to share resources interactively.

-Multiple users acting on the same resource

-Supported interactive use

-Each user feels they have the entire machine

-Tries to optimize response time

-Based on time-slicing

"Time slice"

<p>Allows multiple users to share resources interactively.</p><p>-Multiple users acting on the same resource</p><p>-Supported interactive use</p><p>-Each user feels they have the entire machine</p><p>-Tries to optimize response time</p><p>-Based on time-slicing</p><p>"Time slice"</p>
6
New cards

Time Slice

Rapid switching between users for responsiveness.

7
New cards

Desktop Systems

Personal computers that emerged in the 1970s.

8
New cards

Mainframe Systems

Large, powerful computers for bulk data processing.

-Modular, designed with redundancies - so that operations continue even after one part fails

-Adding more storage or peripherals, or maintenance, does not require turning the computer off

-In a year of usage, downtime can only be hours long

9
New cards

I/O Processing

Handles input/output operations for tasks.

10
New cards

Interactive Use

Users engage with the system in real-time.

11
New cards

High-Level Interface

User-friendly interaction through GUI or command line.

12
New cards

Offline Processing

Jobs processed without immediate user interaction.

13
New cards

Multiprocessor Systems

Multiple processors working simultaneously on tasks.

Also known as Parallel Systems/Tightly-Coupled Systems

14
New cards

Advantages of Multiprocessor Systems

Increased Throughput, Economy of Scale, Increased Reliability

15
New cards

Symmetric Multiprocessing (SMP)

All CPUs perform identical tasks.

16
New cards

Asymmetric Multiprocessing

CPUs assigned specific roles for tasks.

17
New cards

Graphics Processing Units (GPUs)

Specialized processors for rendering graphics.

18
New cards

Distributed Systems

Geographically-distributed computing resource utilization.

Also known as Loosely-computed Systems

19
New cards

Clustered Systems

Multiple CPUs working together via a LAN.

20
New cards

Real-Time Systems

Guaranteed response to events within fixed time.

Hard Real-Time Systems - Critical deadlines for device control applications.

Soft Real-Time Systems - Important deadlines, but not critical.

21
New cards

Handheld Systems

Devices like PDAs and mobile phones.

22
New cards

General Structure of an O/S

Resident Programs, Non-Resident Programs

23
New cards

Resident Programs

Critical programs always in memory, like KERNEL.

24
New cards

Non-Resident Programs

Loaded into memory only when needed.

25
New cards

Dual-Mode Operation

User and kernel modes for system security.

<p>User and kernel modes for system security.</p>
26
New cards

Components of an O/S

Management: Process, Main Memory, File, I/O System, Secondary Storage

Networking, Protection System

27
New cards

Process Management

Controls process execution and state tracking.

28
New cards

Main Memory Management

Allocates and deallocates memory for processes.

29
New cards

File Management

Maintains file information and directory structure.

30
New cards

I/O System Management

Standardizes access to input/output devices.

31
New cards

Secondary Storage Management

Manages disk space allocation and scheduling.

32
New cards

Networking

Protocols for data transfer and connection strategies.

33
New cards

Protection System

Controls access to programs and user processes.

34
New cards

Command Interpreter System

Interface for user commands via various input methods.

35
New cards

Architectures

Monolithic, Layered, Virtual Machine, Microkernel

36
New cards

Monolithic Architecture

Single large kernel; minimal structure, no security.

37
New cards

Layered Architecture

Components organized in layers; requires traversals.

<p>Components organized in layers; requires traversals.</p>
38
New cards

Virtual Machine

Multiple systems run on a single machine.

39
New cards

Microkernel

Minimal kernel; controls O/S with modularity.

<p>Minimal kernel; controls O/S with modularity.</p>
40
New cards

UNIX Operating System

Developed by Ken Thompson and Dennis Ritchie.

41
New cards

MULTICS

Multiplexed Information and Computer Services

Early time-sharing O/S; faced development issues.

<p>Multiplexed Information and Computer Services</p><p>Early time-sharing O/S; faced development issues.</p>
42
New cards

UNICS

Uniplexed Information and Computer Services

Single-task system; precursor to UNIX.

43
New cards

PDP-7

First hardware used to develop UNIX.

44
New cards

PDP-11/20

Second version of UNIX developed here.

45
New cards

Version 3

Used C, Developed in Bell Labs to support Unix

Implements Multiprogramming, Multitasking

46
New cards

Version 6 UNIX

1976, First version distributed outside Bell Labs.

47
New cards

Version 7 UNIX

1978, Considered ancestor of modern UNIX systems.

48
New cards

Unix Design Philosophy

Focus on simplicity, interactivity, and elegance.

49
New cards

UDP Principles

Programs should do one thing well.

Write programs to work together.

Write programs to handle text streams, because that is a universal interface.

50
New cards

3BSD

First implementation of virtual memory in UNIX.

51
New cards

4 BSD

Standard system developed for government use.

52
New cards

4.2BSD

Enabled communication across diverse network facilities.

53
New cards

C Shell

New user interface introduced in 4.2BSD.

54
New cards

Text Editor (vi)

New text editor introduced in 4.2BSD.

55
New cards

Berkeley DARPA Unix

Original project leading to modern Unix systems.

56
New cards

4.4 BSD

Last Berkeley release with significant enhancements.

Includes x.25 networking, new file system organization, enhanced security, improved kernel structure

Berkeley stopped its research after this release

57
New cards

Now

-Currently not limited to Bell, AT&T, Berkeley

-Moved to many different computers

Sun Microsystem - ported BSD to their workstations

DEC - Ultrix, OSF/1

Microsoft - Xenix, Windows/NT heavily influenced by Unix

Santa Cruz Operations - SCO, Linux

-Standardization projects for Unix Environments

IEEE, ISO, ANSI, etc.

1989 - ANSI standardized C (ANSI C)

-Single Unix Specification (SUS)

Latest SUS - two parts:

Base specifications - technically identical to POSIX

X/Open Curses specification

Some parts of the SUS are optional

58
New cards

Unix Design Principles

Guidelines emphasizing simplicity and time-sharing.

59
New cards

Unix Shell

Command interpreter executing user and system commands.

60
New cards

Bourne Shell

First Unix shell with $ prompt by Steve Bourne.

61
New cards

BASH

Bourne Again Shell, free alternative to Bourne shell.

62
New cards

Unix File System

Hierarchical structure managing files and directories. Everything is a file!

<p>Hierarchical structure managing files and directories. Everything is a file!</p>
63
New cards

Three-tiered Security Structure

Owner, group, universe access levels in Unix.

64
New cards

File Links

Multiple names for the same data clusters.

65
New cards

Ordinary Files

Data stream stored on a device

66
New cards

Directory Files

Files used to access hardware components.

If a file has files below it in the hierarchy, it must be a directory, otherwise, it is an ordinary file or an empty directory file

A directory does NOT contain other files, rather just contain links to them

Different links can be made to the same instance of a file - different directories can link to the same file

67
New cards

System Calls

Interface for user programs to request OS services

<p>Interface for user programs to request OS services</p>
68
New cards

Dual-mode Operation

Switching between user mode and kernel mode

69
New cards

Categories of System Calls

Process control, file manipulation, device manipulation

70
New cards

Processes

- Any program in execution

- All CPU activity

Job - unit of work in batch systems.

User Program - A task in time-sharing systems.

71
New cards

Process States

Different stages a process can be in.

<p>Different stages a process can be in.</p>
72
New cards

Process Control Block (PCB)

Data structure containing process information:

-Process state

-Program Counter

-CPU Registers

-Process Priority

73
New cards

Process Queue

Job Queue - Contains all processes in the system.

Ready Queue - Processes waiting in main memory for execution.

I/O - Processes waiting for I/O device access.

74
New cards

Process Scheduler

Long-term Scheduler, Short-term Scheduler

75
New cards

Long-term Scheduler (Job)

Loads processes from storage to memory.

<p>Loads processes from storage to memory.</p>
76
New cards

Short-term Scheduler (CPU)

Allocates CPU to processes in ready queue.

77
New cards

Medium-term Scheduler

Swaps processes in and out of memory.

78
New cards

CPU Scheduling

Selecting processes for execution on CPU.

79
New cards

Process Types

CPU Bound: more time computing

I/O bound: more time doing I/O

80
New cards

Context Switching

Switching from one process to another.

81
New cards

Independent Process

Does not share data with other processes.

82
New cards

Dependent Process

Can affect or be affected by other processes.

83
New cards

Cooperation

Processes working together for shared goals.

Information Sharing, Computation Speedup, Modularity

84
New cards

Information Sharing

Resources shared among processes to avoid duplication.

85
New cards

Computation Speedup

Parallel processes share CPU for faster results.

86
New cards

Modularity

Breaking down large processes into smaller, efficient ones.

87
New cards

Threads

Lightweight processes with shared resources.

88
New cards

Multithreading

Running multiple threads within a single task.

89
New cards

Tasks

Heavyweight processes that can be divided into threads.

90
New cards

Peer Threads

Threads that cooperate to form a task.

91
New cards

Interprocess Communication

Methods for processes to exchange information.

92
New cards

Message Passing

Sending messages between processes via kernel.

93
New cards

Shared Memory

Memory area accessible by multiple processes.

94
New cards

Direct Communication

Explicitly names the process for message passing.

95
New cards

Indirect Communication

Messages sent through a shared mailbox.

96
New cards

Message Queue

Buffer for storing messages in communication.

97
New cards

Bounded Queue

Queue with a limit on message capacity.

98
New cards

Unbounded Queue

Queue limited only by system memory.

99
New cards

Producer-Consumer Problem

Example of dependent processes generating and handling data.

100
New cards

Concurrent Access

Multiple processes accessing shared data simultaneously.