Operating Systems Overview: Understanding the Role and Components of an OS, Slides of Operating Systems

An overview of operating systems, explaining what they are, their functions, and their components. It covers topics such as scheduling, memory management, resource scheduling, deadlock protection, interrupts, hardware support, storage hierarchy, caching, protection, and more. It also discusses different characteristics of operating systems, including time sharing, multiprocessing, distributed systems, and real-time systems.

Typology: Slides

2012/2013

Uploaded on 04/24/2013

banamala
banamala 🇮🇳

4.4

(19)

114 documents

1 / 17

Toggle sidebar

This page cannot be seen from the preview

Don't miss anything!

bg1
1: Operating Systems Overview 1
OPERATING SYSTEMS
OVERVIEW
Docsity.com
pf3
pf4
pf5
pf8
pf9
pfa
pfd
pfe
pff

Partial preview of the text

Download Operating Systems Overview: Understanding the Role and Components of an OS and more Slides Operating Systems in PDF only on Docsity!

1: Operating Systems Overview 1

OPERATING SYSTEMS

OVERVIEW

1: Operating Systems Overview 2

WHAT IS AN OPERATING SYSTEM?

  • An interface between users and hardware - an environment "architecture”
  • Allows convenient usage; hides the tedious stuff
  • Allows efficient usage; parallel activity, avoids wasted cycles
  • Provides information protection
  • Gives each user a slice of the resources
  • Acts as a control program.

OVERVIEW

1: Operating Systems Overview 4

A mechanism for scheduling jobs or processes. Scheduling can be as simple

as running the next process, or it can use relatively complex rules to pick

a running process.

A method for simultaneous CPU execution and IO handling. Processing is

going on even as IO is occurring in preparation for future CPU work.

Off Line Processing; not only are IO and CPU happening concurrently, but

some off-board processing is occurring with the IO.

OVERVIEW

Components

1: Operating Systems Overview 5

The CPU is wasted if a job waits for I/O. This leads to:

  • Multiprogramming ( dynamic switching ). While one job waits for a

resource, the CPU can find another job to run. It means that several jobs

are ready to run and only need the CPU in order to continue.

CPU scheduling is the subject of Chapter 6.

All of this leads to:

  • memory management
  • resource scheduling
  • deadlock protection

which are the subject of the rest of this course.

OVERVIEW

Components

1: Operating Systems Overview 7

OVERVIEW

Characteristics

Interrupts:

  • Interrupt transfers control to the interrupt service routine generally, through the interrupt vector , which contains the addresses of all the service routines.
  • Interrupt architecture must save the address of the interrupted instruction.
  • Incoming interrupts are disabled while another interrupt is being processed to prevent a lost interrupt.
  • A trap is a software-generated interrupt caused either by an error or a user request.
  • An operating system is interrupt driven.

1: Operating Systems Overview 8

OVERVIEW

Hardware

Support

These are the devices that make up a typical system.

Any of these devices can cause an electrical interrupt that grabs the attention of the CPU.

1: Operating Systems Overview 10

OVERVIEW

Hardware

Support

This is O.S. Bookkeeping. These structures are necessary to keep track of IO in progress.

1: Operating Systems Overview 11

Very fast storage is very expensive. So the Operating System manages a hierarchy of storage devices in order to make the best use of resources. In fact, considerable effort goes into this support.

OVERVIEW

Storage

Hierarchy

Fast and Expensive

Slow an Cheap

1: Operating Systems Overview 13

Caching:

  • Important principle, performed at many levels in a computer (in hardware,

operating system, software)

  • Information in use copied from slower to faster storage temporarily
  • Faster storage (cache) checked first to determine if information is there
    • If it is, information used directly from the cache (fast)
    • If not, data copied to cache and used there
  • Cache smaller than storage being cached
    • Cache management important design problem
    • Cache size and replacement policy

OVERVIEW

Storage

Hierarchy

1: Operating Systems Overview 14

The goal is protecting the Operating System and others from malicious or ignorant users.

The User/Supervisor Mode and privileged instructions.

Concurrent threads might interfere with others. This leads to protection of resources by user/supervisor mode. These resources include:

I/O Define I/O instructions as privileged; they can be executed only in Supervisor mode. System calls get us from user to supervisor mode.

OVERVIEW

Protection

1: Operating Systems Overview 16

CPU A clock prevents programs from using all the CPU time. This

clock causes an interrupt that causes the operating system to gain control

from a user program.

OVERVIEW

Protection

For machines connected together, this protection must extend across:

Shared resources,

Multiprocessor Architectures,

Clustered Systems

The practice of this is called “distributed operating systems”.

1: Operating Systems Overview 17

WRAPUP

We’ve completed our first overview of an Operating System – this was

the equivalent of a Satellite picture.

The next view will be at the level of a high flying plane.

After that, we’ll be at ground level, looking at pieces in detail.

OPERATING SYSTEM OVERVIEW