OPERATING SYSTEMS & Network OVERVIEW -...

39
1 OPERATING SYSTEMS & Network OVERVIEW 1: OS & Network Overview

Transcript of OPERATING SYSTEMS & Network OVERVIEW -...

Page 1: OPERATING SYSTEMS & Network OVERVIEW - uCozramzi.ucoz.com/DistributedSys/Distributed_Systems_Revision.pdf · 1: OS & Network Overview 11 Caching: •Important principle, performed

1

OPERATING SYSTEMS &

Network

OVERVIEW

1: OS & Network Overview

Page 2: OPERATING SYSTEMS & Network OVERVIEW - uCozramzi.ucoz.com/DistributedSys/Distributed_Systems_Revision.pdf · 1: OS & Network Overview 11 Caching: •Important principle, performed

1: OS & Network 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.

OPERATING SYSTEM

OVERVIEW

Page 3: OPERATING SYSTEMS & Network OVERVIEW - uCozramzi.ucoz.com/DistributedSys/Distributed_Systems_Revision.pdf · 1: OS & Network Overview 11 Caching: •Important principle, performed

1: OS & Network Overview 3

OPERATING

SYSTEM OVERVIEW

The Layers Of

A System

Program Interface

Humans

User Programs

O.S. Interface

O.S.

Hardware Interface/

Privileged Instructions

Disk/Tape/Memory

Page 4: OPERATING SYSTEMS & Network OVERVIEW - uCozramzi.ucoz.com/DistributedSys/Distributed_Systems_Revision.pdf · 1: OS & Network Overview 11 Caching: •Important principle, performed

1: OS & Network Overview 4

A mechanism for scheduling jobs or processes. Scheduling can be as simpleas running the next process, or it can use relatively complex rules to picka running process.

A method for simultaneous CPU execution and IO handling. Processing isgoing on even as IO is occurring in preparation for future CPU work.

Off Line Processing; not only are IO and CPU happening concurrently, butsome off-board processing is occurring with the IO.

OPERATING SYSTEM

OVERVIEWComponents

Page 5: OPERATING SYSTEMS & Network OVERVIEW - uCozramzi.ucoz.com/DistributedSys/Distributed_Systems_Revision.pdf · 1: OS & Network Overview 11 Caching: •Important principle, performed

1: OS & Network Overview 5

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

• Multiprogramming ( dynamic switching ). While one job waits for aresource, the CPU can find another job to run. It means that several jobsare ready to run and only need the CPU in order to continue.

All of this leads to:

• memory management

• resource scheduling

• deadlock protection

OPERATING SYSTEM

OVERVIEWComponents

Page 6: OPERATING SYSTEMS & Network OVERVIEW - uCozramzi.ucoz.com/DistributedSys/Distributed_Systems_Revision.pdf · 1: OS & Network Overview 11 Caching: •Important principle, performed

1: OS & Network Overview 6

OPERATING SYSTEM

OVERVIEWCharacteristics

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.

Page 7: OPERATING SYSTEMS & Network OVERVIEW - uCozramzi.ucoz.com/DistributedSys/Distributed_Systems_Revision.pdf · 1: OS & Network Overview 11 Caching: •Important principle, performed

1: OS & Network Overview 7

OPERATING SYSTEM

OVERVIEWHardware

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.

Page 8: OPERATING SYSTEMS & Network OVERVIEW - uCozramzi.ucoz.com/DistributedSys/Distributed_Systems_Revision.pdf · 1: OS & Network Overview 11 Caching: •Important principle, performed

1: OS & Network Overview 8

OPERATING SYSTEM

OVERVIEWHardware

Support

Sequence

of events

for

processing

an IO

request.

Comparing

Synchronous

and

Asynchronous

IO Operations

Page 9: OPERATING SYSTEMS & Network OVERVIEW - uCozramzi.ucoz.com/DistributedSys/Distributed_Systems_Revision.pdf · 1: OS & Network Overview 11 Caching: •Important principle, performed

1: OS & Network Overview 9

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

OPERATING SYSTEM

OVERVIEWStorage

Hierarchy

Fast and Expensive

Slow an Cheap

Page 10: OPERATING SYSTEMS & Network OVERVIEW - uCozramzi.ucoz.com/DistributedSys/Distributed_Systems_Revision.pdf · 1: OS & Network Overview 11 Caching: •Important principle, performed

1: OS & Network Overview 10

Performance:

OPERATING SYSTEM

OVERVIEWStorage

Hierarchy

Page 11: OPERATING SYSTEMS & Network OVERVIEW - uCozramzi.ucoz.com/DistributedSys/Distributed_Systems_Revision.pdf · 1: OS & Network Overview 11 Caching: •Important principle, performed

1: OS & Network Overview 11

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

OPERATING SYSTEM

OVERVIEWStorage

Hierarchy

Page 12: OPERATING SYSTEMS & Network OVERVIEW - uCozramzi.ucoz.com/DistributedSys/Distributed_Systems_Revision.pdf · 1: OS & Network Overview 11 Caching: •Important principle, performed

Process != Program

1: OS & Network Overview 12

Page 13: OPERATING SYSTEMS & Network OVERVIEW - uCozramzi.ucoz.com/DistributedSys/Distributed_Systems_Revision.pdf · 1: OS & Network Overview 11 Caching: •Important principle, performed

Extensions

• OS – Centralized Version

• Two Trends

• System Virtualization: Allow multiple instances of (possibly

different) OSes on a single machine

• Distributed OS: Large scale networked systems/machines

1: OS & Network Overview 13

Page 14: OPERATING SYSTEMS & Network OVERVIEW - uCozramzi.ucoz.com/DistributedSys/Distributed_Systems_Revision.pdf · 1: OS & Network Overview 11 Caching: •Important principle, performed

Network Overview

1: OS & Network Overview 14

Page 15: OPERATING SYSTEMS & Network OVERVIEW - uCozramzi.ucoz.com/DistributedSys/Distributed_Systems_Revision.pdf · 1: OS & Network Overview 11 Caching: •Important principle, performed

OSI Reference model

1: OS & Network Overview 15

Page 16: OPERATING SYSTEMS & Network OVERVIEW - uCozramzi.ucoz.com/DistributedSys/Distributed_Systems_Revision.pdf · 1: OS & Network Overview 11 Caching: •Important principle, performed

OSI vs TCP/IP

1: OS & Network Overview 16

Page 17: OPERATING SYSTEMS & Network OVERVIEW - uCozramzi.ucoz.com/DistributedSys/Distributed_Systems_Revision.pdf · 1: OS & Network Overview 11 Caching: •Important principle, performed

IP Related Protocols

1: OS & Network Overview 17

Page 18: OPERATING SYSTEMS & Network OVERVIEW - uCozramzi.ucoz.com/DistributedSys/Distributed_Systems_Revision.pdf · 1: OS & Network Overview 11 Caching: •Important principle, performed

IPv4 System Model

1: OS & Network Overview 18

Page 19: OPERATING SYSTEMS & Network OVERVIEW - uCozramzi.ucoz.com/DistributedSys/Distributed_Systems_Revision.pdf · 1: OS & Network Overview 11 Caching: •Important principle, performed

IP Datagram Format

1: OS & Network Overview 19

Page 20: OPERATING SYSTEMS & Network OVERVIEW - uCozramzi.ucoz.com/DistributedSys/Distributed_Systems_Revision.pdf · 1: OS & Network Overview 11 Caching: •Important principle, performed

Fragmentation and Re-Assembly

1: OS & Network Overview 20

Page 21: OPERATING SYSTEMS & Network OVERVIEW - uCozramzi.ucoz.com/DistributedSys/Distributed_Systems_Revision.pdf · 1: OS & Network Overview 11 Caching: •Important principle, performed

Fragmentation Example

1: OS & Network Overview 21

Page 22: OPERATING SYSTEMS & Network OVERVIEW - uCozramzi.ucoz.com/DistributedSys/Distributed_Systems_Revision.pdf · 1: OS & Network Overview 11 Caching: •Important principle, performed

Getting a Datagram from Src to Dest

1: OS & Network Overview 22

Page 23: OPERATING SYSTEMS & Network OVERVIEW - uCozramzi.ucoz.com/DistributedSys/Distributed_Systems_Revision.pdf · 1: OS & Network Overview 11 Caching: •Important principle, performed

Getting a Datagram from Src to Dst

1: OS & Network Overview 23

Page 24: OPERATING SYSTEMS & Network OVERVIEW - uCozramzi.ucoz.com/DistributedSys/Distributed_Systems_Revision.pdf · 1: OS & Network Overview 11 Caching: •Important principle, performed

Getting a Datagram from Src to Dst

1: OS & Network Overview 24

Page 25: OPERATING SYSTEMS & Network OVERVIEW - uCozramzi.ucoz.com/DistributedSys/Distributed_Systems_Revision.pdf · 1: OS & Network Overview 11 Caching: •Important principle, performed

Getting a Datagram from Src to Dst

1: OS & Network Overview 25

Page 26: OPERATING SYSTEMS & Network OVERVIEW - uCozramzi.ucoz.com/DistributedSys/Distributed_Systems_Revision.pdf · 1: OS & Network Overview 11 Caching: •Important principle, performed

Network Commands

1: OS & Network Overview 26

Page 27: OPERATING SYSTEMS & Network OVERVIEW - uCozramzi.ucoz.com/DistributedSys/Distributed_Systems_Revision.pdf · 1: OS & Network Overview 11 Caching: •Important principle, performed

User Datagram Protocol (UDP)

1: OS & Network Overview 27

Page 28: OPERATING SYSTEMS & Network OVERVIEW - uCozramzi.ucoz.com/DistributedSys/Distributed_Systems_Revision.pdf · 1: OS & Network Overview 11 Caching: •Important principle, performed

Simple Packet Multiplexer (UDP)

1: OS & Network Overview 28

Page 29: OPERATING SYSTEMS & Network OVERVIEW - uCozramzi.ucoz.com/DistributedSys/Distributed_Systems_Revision.pdf · 1: OS & Network Overview 11 Caching: •Important principle, performed

User Datagram Protocol (UDP)

• Applications may prefer using UDP:

• don’t need reliable delivery ;

• do not need connection oriented service or cannot afford the connection setup overhead ;

• have their own special needs, such as streaming of real-time audio or video ;

• tftp, RIP, DNS, SNMP, RTP, etc.

1: OS & Network Overview 29

Page 30: OPERATING SYSTEMS & Network OVERVIEW - uCozramzi.ucoz.com/DistributedSys/Distributed_Systems_Revision.pdf · 1: OS & Network Overview 11 Caching: •Important principle, performed

TCP Overview

1: OS & Network Overview 30

Page 31: OPERATING SYSTEMS & Network OVERVIEW - uCozramzi.ucoz.com/DistributedSys/Distributed_Systems_Revision.pdf · 1: OS & Network Overview 11 Caching: •Important principle, performed

TCP Segment Format

1: OS & Network Overview 31

Page 32: OPERATING SYSTEMS & Network OVERVIEW - uCozramzi.ucoz.com/DistributedSys/Distributed_Systems_Revision.pdf · 1: OS & Network Overview 11 Caching: •Important principle, performed

TCP Segment Format (cont’d)

1: OS & Network Overview 32

Page 33: OPERATING SYSTEMS & Network OVERVIEW - uCozramzi.ucoz.com/DistributedSys/Distributed_Systems_Revision.pdf · 1: OS & Network Overview 11 Caching: •Important principle, performed

TCP Connection Management

1: OS & Network Overview 33

Page 34: OPERATING SYSTEMS & Network OVERVIEW - uCozramzi.ucoz.com/DistributedSys/Distributed_Systems_Revision.pdf · 1: OS & Network Overview 11 Caching: •Important principle, performed

3-Way Handshaking

1: OS & Network Overview 34

Page 35: OPERATING SYSTEMS & Network OVERVIEW - uCozramzi.ucoz.com/DistributedSys/Distributed_Systems_Revision.pdf · 1: OS & Network Overview 11 Caching: •Important principle, performed

TCP: Initial Sequence Number

1: OS & Network Overview 35

Page 36: OPERATING SYSTEMS & Network OVERVIEW - uCozramzi.ucoz.com/DistributedSys/Distributed_Systems_Revision.pdf · 1: OS & Network Overview 11 Caching: •Important principle, performed

Data Transfer

1: OS & Network Overview 36

Page 37: OPERATING SYSTEMS & Network OVERVIEW - uCozramzi.ucoz.com/DistributedSys/Distributed_Systems_Revision.pdf · 1: OS & Network Overview 11 Caching: •Important principle, performed

TCP Connections: Close

1: OS & Network Overview 37

Page 38: OPERATING SYSTEMS & Network OVERVIEW - uCozramzi.ucoz.com/DistributedSys/Distributed_Systems_Revision.pdf · 1: OS & Network Overview 11 Caching: •Important principle, performed

Application Layer

1: OS & Network Overview 38

Page 39: OPERATING SYSTEMS & Network OVERVIEW - uCozramzi.ucoz.com/DistributedSys/Distributed_Systems_Revision.pdf · 1: OS & Network Overview 11 Caching: •Important principle, performed

Questions