SlideShare a Scribd company logo
1
1.1 Silberschatz, Galvin and Gagne ©2003Operating System Concepts with Java
Chapter 1: IntroductionChapter 1: Introduction
n What is an Operating System?
n Mainframe Systems
n Desktop Systems
n Multiprocessor Systems
n Distributed Systems
n Clustered System
n Real -Time Systems
n Handheld Systems
n Feature Migration
n Computing Environments
1.2 Silberschatz, Galvin and Gagne ©2003Operating System Concepts with Java
What is an Operating System?What is an Operating System?
n A program that acts as an intermediary between a user of
a computer and the computer hardware
n Operating system goals:
l Execute user programs and make solving user problems
easier.
l Make the computer system convenient to use
n Use the computer hardware in an efficient manner
2
1.3 Silberschatz, Galvin and Gagne ©2003Operating System Concepts with Java
What is an OS?What is an OS?
n Think about some of the things you do with a computer and think about
how the OS supports them.
© 2004 D.A. Menascé
1.4 Silberschatz, Galvin and Gagne ©2003Operating System Concepts with Java
OS FunctionsOS Functions
Action OS Functions
Login process creation,
authentication, resource
allocation
Create a text document application launching,
file management.
Running applications Scheduling, resource (e.g.,
memory, disk) allocation.
© 2004 D.A. Menascé
3
1.5 Silberschatz, Galvin and Gagne ©2003Operating System Concepts with Java
Some OS FunctionsSome OS Functions
• User authentication
• Processor allocation (process scheduling)
• File Management
• Memory Management
• Device Management
• Network Management
• Providing a user interface (graphical or not) to
system functions and resources
• Process synchronization
• Interprocess communication.
© 2004 D.A. Menascé
1.6 Silberschatz, Galvin and Gagne ©2003Operating System Concepts with Java
What is an Operating SystemWhat is an Operating System
n Resource Manager
n Extended Machine: provides higher level abstractions of lower
level and complex objects (e.g., files, processes, devices)
l complexity hidden from user
l homogeneous treatment of different low level objects (e.g., one
single read function can be used to read a block from any disk)
© 2004 D.A. Menascé
4
1.7 Silberschatz, Galvin and Gagne ©2003Operating System Concepts with Java
OS OperationOS Operation
Bare Machine
user processes
waiting to run
user processes
waiting to run
OS is
sleeping
Bare Machine
user process is
running
OS is
running
© 2004 D.A. Menascé
1.8 Silberschatz, Galvin and Gagne ©2003Operating System Concepts with Java
Computer System ComponentsComputer System Components
1. Hardware – provides basic computing resources (CPU, memory,
I/O devices)
2. Operating system – controls and coordinates the use of the
hardware among the various application programs for the various
users
3. Applications programs – define the ways in which the system
resources are used to solve the computing problems of the users
(compilers, database systems, video games, business programs)
4. Users (people, machines, other computers)
5
1.9 Silberschatz, Galvin and Gagne ©2003Operating System Concepts with Java
Abstract View of System ComponentsAbstract View of System Components
1.10 Silberschatz, Galvin and Gagne ©2003Operating System Concepts with Java
Operating System DefinitionsOperating System Definitions
n Resource allocator – manages and allocates resources
n Control program – controls the execution of user
programs and operations of I/O devices
n Kernel – the one program running at all times (all else
being application programs)
6
1.11 Silberschatz, Galvin and Gagne ©2003Operating System Concepts with Java
Mainframe SystemsMainframe Systems
n Reduce setup time by batching similar jobs
n Automatic job sequencing – automatically transfers
control from one job to another. First rudimentary
operating system
n Resident monitor
l initial control in monitor
l control transfers to job
l when job completes control transfers back to monitor
1.12 Silberschatz, Galvin and Gagne ©2003Operating System Concepts with Java
IBM 7094 MainframeIBM 7094 Mainframe –– Columbia UniversityColumbia University
19651965
© 2004 D.A. Menascé
7
1.13 Silberschatz, Galvin and Gagne ©2003Operating System Concepts with Java
Memory Layout for a Simple Batch SystemMemory Layout for a Simple Batch System
1.14 Silberschatz, Galvin and Gagne ©2003Operating System Concepts with Java
MultiprogrammedMultiprogrammed Batch SystemsBatch Systems
Several jobs are kept in main memory at the same time, and the
CPU is multiplexed among them
8
1.15 Silberschatz, Galvin and Gagne ©2003Operating System Concepts with Java
Utilization inUtilization in MultiprogrammedMultiprogrammed SystemsSystems
0
0.1
0.2
0.3
0.4
0.5
0.6
0.7
0.8
0.9
1
0 1 2 3 4 5 6 7 8 9 10
Degree of Multiprogramming
Utilization
CPU Utilization Disk Utilization
© 2004 D.A. Menascé
1.16 Silberschatz, Galvin and Gagne ©2003Operating System Concepts with Java
Throughput inThroughput in MultiprogrammedMultiprogrammed SystemsSystems
0
0.001
0.002
0.003
0.004
0.005
0.006
0.007
0 1 2 3 4 5 6 7 8 9 10
Degree of multiprogramming
Throughput(jobs/msec)
© 2004 D.A. Menascé
9
1.17 Silberschatz, Galvin and Gagne ©2003Operating System Concepts with Java
OS Features Needed for MultiprogrammingOS Features Needed for Multiprogramming
n I/O routine supplied by the system
n Memory management – the system must allocate the
memory to several jobs
n CPU scheduling – the system must choose among
several jobs ready to run
n Allocation of devices
1.18 Silberschatz, Galvin and Gagne ©2003Operating System Concepts with Java
MultiprogrammingMultiprogramming
P1
P2
P3
P4
process using the CPU
© 2004 D.A. Menascé
10
1.19 Silberschatz, Galvin and Gagne ©2003Operating System Concepts with Java
MultiprogrammingMultiprogramming
• The OS gives each process a certain timeslice (quantum)
to run.
• Control is passed to another process if:
• running process ends before timeslice expires
running process leaves the system.
• running process needs and I/O operation
running process joins the I/O device queue,
• timeslice expires
running process goes back to the CPU queue.
© 2004 D.A. Menascé
1.20 Silberschatz, Galvin and Gagne ©2003Operating System Concepts with Java
Process States in aProcess States in a MultiprogrammedMultiprogrammed
OSOS
Running Blocked
Ready
IO request
end of
timeslice
scheduling
IO operation
completion
© 2004 D.A. Menascé
11
1.21 Silberschatz, Galvin and Gagne ©2003Operating System Concepts with Java
TimeTime--Sharing SystemsSharing Systems––Interactive ComputingInteractive Computing
n The CPU is multiplexed among several jobs that are kept
in memory and on disk (the CPU is allocated to a job only
if the job is in memory)
n A job is swapped in and out of memory to the disk
n On-line communication between the user and the system
is provided
l When the operating system finishes the execution of one
command, it seeks the next “control statement” from the
user’s keyboard
n On-line system must be available for users to access data
and code
1.22 Silberschatz, Galvin and Gagne ©2003Operating System Concepts with Java
TimeTime--sharing Queuessharing Queues
Swapping
disk
CPU
disk
Jobs in memory
Arriving job Completing job
a
b
c
Ready queue
© 2004 D.A. Menascé
12
1.23 Silberschatz, Galvin and Gagne ©2003Operating System Concepts with Java
Desktop SystemsDesktop Systems
n Personal computers – computer system dedicated to a
single user
n I/O devices – keyboards, mice, display screens, small
printers
n User convenience and responsiveness
n Can adopt technology developed for larger operating
system
l Often individuals have sole use of computer and do not
need advanced CPU utilization of protection features
n May run several different types of operating systems
(Windows, MacOS, UNIX, Linux)
1.24 Silberschatz, Galvin and Gagne ©2003Operating System Concepts with Java
Parallel SystemsParallel Systems
n Systems with more than one CPU in close communication
l Also known as multiprocessor systems
n Tightly coupled system – processors share memory and a clock;
communication usually takes place through the shared memory
n Advantages of parallel system:
l Increased throughput
l Economical
l Increased reliability (in some cases)
4graceful degradation
4fail-soft systems
13
1.25 Silberschatz, Galvin and Gagne ©2003Operating System Concepts with Java
Parallel SystemsParallel Systems
P1
P2
Pn
.
.
.Job queue
Prob. System is Up = Prob. at least
one processor is up
= 1 – Prob (all processors
are down)
= 1 - pn
n 1- p^n
1 0.200
2 0.360
3 0.488
4 0.590
5 0.672
6 0.738
7 0.790
8 0.832
9 0.866
10 0.893
© 2004 D.A. Menascé
1.26 Silberschatz, Galvin and Gagne ©2003Operating System Concepts with Java
Parallel Systems (Cont.)Parallel Systems (Cont.)
n Asymmetric multiprocessing
l Each processor is assigned a specific task; master
processor schedules and allocated work to slave processors
l More common in extremely large systems
n Symmetric multiprocessing (SMP)
l Each processor runs and identical copy of the operating
system
l Many processes can run at once without performance
deterioration
l Most modern operating systems support SMP
14
1.27 Silberschatz, Galvin and Gagne ©2003Operating System Concepts with Java
Symmetric Multiprocessing ArchitectureSymmetric Multiprocessing Architecture
1.28 Silberschatz, Galvin and Gagne ©2003Operating System Concepts with Java
Distributed SystemsDistributed Systems
n Distribute the computation among several physical
processors
n Loosely coupled system – each processor has its own
local memory; processors communicate with one another
through various communications lines, such as high-
speed buses or telephone lines
n Advantages of distributed systems
l Resources Sharing
l Computation speed up – load sharing
l Reliability
l Communications
15
1.29 Silberschatz, Galvin and Gagne ©2003Operating System Concepts with Java
Distributed Systems (cont)Distributed Systems (cont)
n Requires networking infrastructure
n Local area networks (LAN) or Wide area networks (WAN)
n May be either client-server or peer-to-peer systems
1.30 Silberschatz, Galvin and Gagne ©2003Operating System Concepts with Java
General Structure of ClientGeneral Structure of Client--ServerServer
16
1.31 Silberschatz, Galvin and Gagne ©2003Operating System Concepts with Java
Clustered SystemsClustered Systems
n Clustering allows two or more systems to share storage
n Provides high reliability
n Asymmetric clustering: one server runs the application or
applications while other servers standby
n Symmetric clustering: all N hosts are running the application or
applications
1.32 Silberschatz, Galvin and Gagne ©2003Operating System Concepts with Java
RealReal--Time SystemsTime Systems
n Often used as a control device in a dedicated application
such as controlling scientific experiments, medical
imaging systems, industrial control systems, and some
display systems
n Well-defined fixed-time constraints
n Real-Time systems may be either hard or soft real-time
17
1.33 Silberschatz, Galvin and Gagne ©2003Operating System Concepts with Java
RealReal--Time Systems (Cont.)Time Systems (Cont.)
n Hard real-time:
l Secondary storage limited or absent, data stored in short
term memory, or read-only memory (ROM)
l Conflicts with time-sharing systems, not supported by
general-purpose operating systems
n Soft real-time
l Limited utility in industrial control of robotics
l Integrate-able with time-share systems
l Useful in applications (multimedia, virtual reality) requiring
tight response times
1.34 Silberschatz, Galvin and Gagne ©2003Operating System Concepts with Java
Handheld SystemsHandheld Systems
n Personal Digital Assistants (PDAs)
n Cellular telephones
n Issues:
l Limited memory
l Slow processors
l Small display screens
18
1.35 Silberschatz, Galvin and Gagne ©2003Operating System Concepts with Java
Migration of OperatingMigration of Operating--System Concepts and FeaturesSystem Concepts and Features
1.36 Silberschatz, Galvin and Gagne ©2003Operating System Concepts with Java
Computing EnvironmentsComputing Environments
n Traditional computing
l PCs, Servers, limited remote access
n Web-Based Computing
l Client-server and web services, convenient remote access, location-
less servers
n Embedded Computing
l Most computers (auto engine controllers, microwaves)
l Very limited operating system features
l Little or no user interface, remote access

More Related Content

What's hot

Solving Real-Time Scheduling Problems With RT_PREEMPT and Deadline-Based Sche...
Solving Real-Time Scheduling Problems With RT_PREEMPT and Deadline-Based Sche...Solving Real-Time Scheduling Problems With RT_PREEMPT and Deadline-Based Sche...
Solving Real-Time Scheduling Problems With RT_PREEMPT and Deadline-Based Sche...
peknap
 
Os Question Bank
Os Question BankOs Question Bank
Os Question Bank
Sonali Chauhan
 
In a monolithic kerne1
In a monolithic kerne1In a monolithic kerne1
In a monolithic kerne1
Teja Bheemanapally
 
Testing real-time Linux. What to test and how
Testing real-time Linux. What to test and how Testing real-time Linux. What to test and how
Testing real-time Linux. What to test and how
Chirag Jog
 
Slides For Operating System Concepts By Silberschatz Galvin And Gagne
Slides For Operating System Concepts By Silberschatz Galvin And GagneSlides For Operating System Concepts By Silberschatz Galvin And Gagne
Slides For Operating System Concepts By Silberschatz Galvin And Gagne
sarankumar4445
 
Real Time Operating Systems
Real Time Operating SystemsReal Time Operating Systems
Real Time Operating Systems
Pawandeep Kaur
 
Memory access control in multiprocessor for real-time system with mixed criti...
Memory access control in multiprocessor for real-time system with mixed criti...Memory access control in multiprocessor for real-time system with mixed criti...
Memory access control in multiprocessor for real-time system with mixed criti...
Heechul Yun
 
Real-time soultion
Real-time soultionReal-time soultion
Real-time soultion
Nylon
 
slide one
slide oneslide one
slide one
basrah
 
Operating System Chapter 1
Operating System Chapter 1Operating System Chapter 1
Operating System Chapter 1
Kasam Sharif
 
Unit 1 ppt
Unit 1 pptUnit 1 ppt
Unit 1 ppt
GRajendra
 
L4 Microkernel :: Design Overview
L4 Microkernel :: Design OverviewL4 Microkernel :: Design Overview
L4 Microkernel :: Design Overview
National Cheng Kung University
 
Embedded os
Embedded osEmbedded os
Embedded os
chian417
 
Storage craft shadowprotect_server
Storage craft shadowprotect_serverStorage craft shadowprotect_server
Storage craft shadowprotect_server
BUSINESS SOFTWARES & SOLUTIONS
 
Microkernel Evolution
Microkernel EvolutionMicrokernel Evolution
Microkernel Evolution
National Cheng Kung University
 
Vx works RTOS
Vx works RTOSVx works RTOS
Vx works RTOS
Sai Malleswar
 
Analyzing Kernel Security and Approaches for Improving it
Analyzing Kernel Security and Approaches for Improving itAnalyzing Kernel Security and Approaches for Improving it
Analyzing Kernel Security and Approaches for Improving it
Milan Rajpara
 
Embedded Virtualization applied in Mobile Devices
Embedded Virtualization applied in Mobile DevicesEmbedded Virtualization applied in Mobile Devices
Embedded Virtualization applied in Mobile Devices
National Cheng Kung University
 

What's hot (18)

Solving Real-Time Scheduling Problems With RT_PREEMPT and Deadline-Based Sche...
Solving Real-Time Scheduling Problems With RT_PREEMPT and Deadline-Based Sche...Solving Real-Time Scheduling Problems With RT_PREEMPT and Deadline-Based Sche...
Solving Real-Time Scheduling Problems With RT_PREEMPT and Deadline-Based Sche...
 
Os Question Bank
Os Question BankOs Question Bank
Os Question Bank
 
In a monolithic kerne1
In a monolithic kerne1In a monolithic kerne1
In a monolithic kerne1
 
Testing real-time Linux. What to test and how
Testing real-time Linux. What to test and how Testing real-time Linux. What to test and how
Testing real-time Linux. What to test and how
 
Slides For Operating System Concepts By Silberschatz Galvin And Gagne
Slides For Operating System Concepts By Silberschatz Galvin And GagneSlides For Operating System Concepts By Silberschatz Galvin And Gagne
Slides For Operating System Concepts By Silberschatz Galvin And Gagne
 
Real Time Operating Systems
Real Time Operating SystemsReal Time Operating Systems
Real Time Operating Systems
 
Memory access control in multiprocessor for real-time system with mixed criti...
Memory access control in multiprocessor for real-time system with mixed criti...Memory access control in multiprocessor for real-time system with mixed criti...
Memory access control in multiprocessor for real-time system with mixed criti...
 
Real-time soultion
Real-time soultionReal-time soultion
Real-time soultion
 
slide one
slide oneslide one
slide one
 
Operating System Chapter 1
Operating System Chapter 1Operating System Chapter 1
Operating System Chapter 1
 
Unit 1 ppt
Unit 1 pptUnit 1 ppt
Unit 1 ppt
 
L4 Microkernel :: Design Overview
L4 Microkernel :: Design OverviewL4 Microkernel :: Design Overview
L4 Microkernel :: Design Overview
 
Embedded os
Embedded osEmbedded os
Embedded os
 
Storage craft shadowprotect_server
Storage craft shadowprotect_serverStorage craft shadowprotect_server
Storage craft shadowprotect_server
 
Microkernel Evolution
Microkernel EvolutionMicrokernel Evolution
Microkernel Evolution
 
Vx works RTOS
Vx works RTOSVx works RTOS
Vx works RTOS
 
Analyzing Kernel Security and Approaches for Improving it
Analyzing Kernel Security and Approaches for Improving itAnalyzing Kernel Security and Approaches for Improving it
Analyzing Kernel Security and Approaches for Improving it
 
Embedded Virtualization applied in Mobile Devices
Embedded Virtualization applied in Mobile DevicesEmbedded Virtualization applied in Mobile Devices
Embedded Virtualization applied in Mobile Devices
 

Viewers also liked

More teens smoke e cigarettes
More teens smoke e cigarettesMore teens smoke e cigarettes
More teens smoke e cigarettes
clifford sugerman
 
Cliff sugerman
Cliff sugermanCliff sugerman
Cliff sugerman
clifford sugerman
 
Pollution brandon
Pollution brandonPollution brandon
Pollution brandon
clifford sugerman
 
Clifford Sugerman
Clifford Sugerman  Clifford Sugerman
Clifford Sugerman
clifford sugerman
 
Clifford Sugerman
Clifford SugermanClifford Sugerman
Clifford Sugerman
clifford sugerman
 
Armas pnp
Armas pnpArmas pnp
Armas pnp
44004620
 
Embriologia da Face
Embriologia da FaceEmbriologia da Face
Embriologia da Face
Raquelrenno
 

Viewers also liked (7)

More teens smoke e cigarettes
More teens smoke e cigarettesMore teens smoke e cigarettes
More teens smoke e cigarettes
 
Cliff sugerman
Cliff sugermanCliff sugerman
Cliff sugerman
 
Pollution brandon
Pollution brandonPollution brandon
Pollution brandon
 
Clifford Sugerman
Clifford Sugerman  Clifford Sugerman
Clifford Sugerman
 
Clifford Sugerman
Clifford SugermanClifford Sugerman
Clifford Sugerman
 
Armas pnp
Armas pnpArmas pnp
Armas pnp
 
Embriologia da Face
Embriologia da FaceEmbriologia da Face
Embriologia da Face
 

Similar to Clifford sugerman

ch1.ppt
ch1.pptch1.ppt
ch1.ppt
ch1.pptch1.ppt
ch1.ppt
Ambika703408
 
ch1-introduction-to-os.ppt
ch1-introduction-to-os.pptch1-introduction-to-os.ppt
ch1-introduction-to-os.ppt
JohnColaco1
 
ch1-IntroductiontoOS_edited.pptx
ch1-IntroductiontoOS_edited.pptxch1-IntroductiontoOS_edited.pptx
ch1-IntroductiontoOS_edited.pptx
RAKIBUDDINCHOWDHURY1
 
Ch1: Operating System- Introduction
Ch1: Operating System- IntroductionCh1: Operating System- Introduction
Ch1: Operating System- Introduction
Ahmar Hashmi
 
Ch1
Ch1Ch1
1.Introduction
1.Introduction1.Introduction
1.Introduction
Senthil Kanth
 
ch1-1.pptx
ch1-1.pptxch1-1.pptx
ch1-1.pptx
HammadTariq51
 
Operating System - Unit I - Introduction
Operating System - Unit I - IntroductionOperating System - Unit I - Introduction
Operating System - Unit I - Introduction
cscarcas
 
Operating System
Operating SystemOperating System
Operating System
Bhaiyasaheb Bodhak
 
Galvin-operating System(Ch1)
Galvin-operating System(Ch1)Galvin-operating System(Ch1)
Galvin-operating System(Ch1)
dsuyal1
 
Epc 3.ppt
Epc 3.pptEpc 3.ppt
Epc 3.ppt
CasmoletJ
 
Introduction_to_OperatingSystems_ch1.ppt
Introduction_to_OperatingSystems_ch1.pptIntroduction_to_OperatingSystems_ch1.ppt
Introduction_to_OperatingSystems_ch1.ppt
paautomation11
 
Operating systems
Operating systemsOperating systems
Operating systems
anishgoel
 
1 introduction
1 introduction1 introduction
1 introduction
Mohd Arif
 
operating system of the computer/PC/laptop.pptx
operating system of the computer/PC/laptop.pptxoperating system of the computer/PC/laptop.pptx
operating system of the computer/PC/laptop.pptx
MudasarHussain21
 
Operating system concepts
Operating system conceptsOperating system concepts
Operating system concepts
Starlee Lathong
 
ch1.ppt
ch1.pptch1.ppt
ch1.ppt
ch1.pptch1.ppt
ch1.ppt
ch1.pptch1.ppt
ch1.ppt
ssuserea967d
 

Similar to Clifford sugerman (20)

ch1.ppt
ch1.pptch1.ppt
ch1.ppt
 
ch1.ppt
ch1.pptch1.ppt
ch1.ppt
 
ch1-introduction-to-os.ppt
ch1-introduction-to-os.pptch1-introduction-to-os.ppt
ch1-introduction-to-os.ppt
 
ch1-IntroductiontoOS_edited.pptx
ch1-IntroductiontoOS_edited.pptxch1-IntroductiontoOS_edited.pptx
ch1-IntroductiontoOS_edited.pptx
 
Ch1: Operating System- Introduction
Ch1: Operating System- IntroductionCh1: Operating System- Introduction
Ch1: Operating System- Introduction
 
Ch1
Ch1Ch1
Ch1
 
1.Introduction
1.Introduction1.Introduction
1.Introduction
 
ch1-1.pptx
ch1-1.pptxch1-1.pptx
ch1-1.pptx
 
Operating System - Unit I - Introduction
Operating System - Unit I - IntroductionOperating System - Unit I - Introduction
Operating System - Unit I - Introduction
 
Operating System
Operating SystemOperating System
Operating System
 
Galvin-operating System(Ch1)
Galvin-operating System(Ch1)Galvin-operating System(Ch1)
Galvin-operating System(Ch1)
 
Epc 3.ppt
Epc 3.pptEpc 3.ppt
Epc 3.ppt
 
Introduction_to_OperatingSystems_ch1.ppt
Introduction_to_OperatingSystems_ch1.pptIntroduction_to_OperatingSystems_ch1.ppt
Introduction_to_OperatingSystems_ch1.ppt
 
Operating systems
Operating systemsOperating systems
Operating systems
 
1 introduction
1 introduction1 introduction
1 introduction
 
operating system of the computer/PC/laptop.pptx
operating system of the computer/PC/laptop.pptxoperating system of the computer/PC/laptop.pptx
operating system of the computer/PC/laptop.pptx
 
Operating system concepts
Operating system conceptsOperating system concepts
Operating system concepts
 
ch1.ppt
ch1.pptch1.ppt
ch1.ppt
 
ch1.ppt
ch1.pptch1.ppt
ch1.ppt
 
ch1.ppt
ch1.pptch1.ppt
ch1.ppt
 

More from clifford sugerman

Cliff sugerman
Cliff sugermanCliff sugerman
Cliff sugerman
clifford sugerman
 
Cliff sugerman
Cliff sugermanCliff sugerman
Cliff sugerman
clifford sugerman
 
Clifford sugerman
Clifford  sugermanClifford  sugerman
Clifford sugerman
clifford sugerman
 
Cliff sugerman
Cliff sugermanCliff sugerman
Cliff sugerman
clifford sugerman
 
Clifford sugerman
Clifford  sugermanClifford  sugerman
Clifford sugerman
clifford sugerman
 
Cliff sugerman
Cliff sugermanCliff sugerman
Cliff sugerman
clifford sugerman
 
Cliff sugerman
Cliff sugermanCliff sugerman
Cliff sugerman
clifford sugerman
 
Clifford sugerman
Clifford  sugermanClifford  sugerman
Clifford sugerman
clifford sugerman
 
Clifford sugerman
Clifford  sugermanClifford  sugerman
Clifford sugerman
clifford sugerman
 
Clifford sugerman
Clifford  sugermanClifford  sugerman
Clifford sugerman
clifford sugerman
 
Clifford sugerman
Clifford  sugermanClifford  sugerman
Clifford sugerman
clifford sugerman
 
Cliff sugerman
Cliff sugermanCliff sugerman
Cliff sugerman
clifford sugerman
 
Cliff sugerman
Cliff sugermanCliff sugerman
Cliff sugerman
clifford sugerman
 
Cliff sugerman
Cliff sugermanCliff sugerman
Cliff sugerman
clifford sugerman
 
Cliff sugerman
Cliff sugermanCliff sugerman
Cliff sugerman
clifford sugerman
 
Cliff sugerman
Cliff sugermanCliff sugerman
Cliff sugerman
clifford sugerman
 
Cliff sugerman
Cliff sugermanCliff sugerman
Cliff sugerman
clifford sugerman
 
Cliff sugerman
Cliff sugermanCliff sugerman
Cliff sugerman
clifford sugerman
 
Cliff sugerman
Cliff sugermanCliff sugerman
Cliff sugerman
clifford sugerman
 
Clifford sugerman
Clifford sugermanClifford sugerman
Clifford sugerman
clifford sugerman
 

More from clifford sugerman (20)

Cliff sugerman
Cliff sugermanCliff sugerman
Cliff sugerman
 
Cliff sugerman
Cliff sugermanCliff sugerman
Cliff sugerman
 
Clifford sugerman
Clifford  sugermanClifford  sugerman
Clifford sugerman
 
Cliff sugerman
Cliff sugermanCliff sugerman
Cliff sugerman
 
Clifford sugerman
Clifford  sugermanClifford  sugerman
Clifford sugerman
 
Cliff sugerman
Cliff sugermanCliff sugerman
Cliff sugerman
 
Cliff sugerman
Cliff sugermanCliff sugerman
Cliff sugerman
 
Clifford sugerman
Clifford  sugermanClifford  sugerman
Clifford sugerman
 
Clifford sugerman
Clifford  sugermanClifford  sugerman
Clifford sugerman
 
Clifford sugerman
Clifford  sugermanClifford  sugerman
Clifford sugerman
 
Clifford sugerman
Clifford  sugermanClifford  sugerman
Clifford sugerman
 
Cliff sugerman
Cliff sugermanCliff sugerman
Cliff sugerman
 
Cliff sugerman
Cliff sugermanCliff sugerman
Cliff sugerman
 
Cliff sugerman
Cliff sugermanCliff sugerman
Cliff sugerman
 
Cliff sugerman
Cliff sugermanCliff sugerman
Cliff sugerman
 
Cliff sugerman
Cliff sugermanCliff sugerman
Cliff sugerman
 
Cliff sugerman
Cliff sugermanCliff sugerman
Cliff sugerman
 
Cliff sugerman
Cliff sugermanCliff sugerman
Cliff sugerman
 
Cliff sugerman
Cliff sugermanCliff sugerman
Cliff sugerman
 
Clifford sugerman
Clifford sugermanClifford sugerman
Clifford sugerman
 

Recently uploaded

Liberal Approach to the Study of Indian Politics.pdf
Liberal Approach to the Study of Indian Politics.pdfLiberal Approach to the Study of Indian Politics.pdf
Liberal Approach to the Study of Indian Politics.pdf
WaniBasim
 
The Diamonds of 2023-2024 in the IGRA collection
The Diamonds of 2023-2024 in the IGRA collectionThe Diamonds of 2023-2024 in the IGRA collection
The Diamonds of 2023-2024 in the IGRA collection
Israel Genealogy Research Association
 
How to Create a More Engaging and Human Online Learning Experience
How to Create a More Engaging and Human Online Learning Experience How to Create a More Engaging and Human Online Learning Experience
How to Create a More Engaging and Human Online Learning Experience
Wahiba Chair Training & Consulting
 
LAND USE LAND COVER AND NDVI OF MIRZAPUR DISTRICT, UP
LAND USE LAND COVER AND NDVI OF MIRZAPUR DISTRICT, UPLAND USE LAND COVER AND NDVI OF MIRZAPUR DISTRICT, UP
LAND USE LAND COVER AND NDVI OF MIRZAPUR DISTRICT, UP
RAHUL
 
Beyond Degrees - Empowering the Workforce in the Context of Skills-First.pptx
Beyond Degrees - Empowering the Workforce in the Context of Skills-First.pptxBeyond Degrees - Empowering the Workforce in the Context of Skills-First.pptx
Beyond Degrees - Empowering the Workforce in the Context of Skills-First.pptx
EduSkills OECD
 
ISO/IEC 27001, ISO/IEC 42001, and GDPR: Best Practices for Implementation and...
ISO/IEC 27001, ISO/IEC 42001, and GDPR: Best Practices for Implementation and...ISO/IEC 27001, ISO/IEC 42001, and GDPR: Best Practices for Implementation and...
ISO/IEC 27001, ISO/IEC 42001, and GDPR: Best Practices for Implementation and...
PECB
 
PCOS corelations and management through Ayurveda.
PCOS corelations and management through Ayurveda.PCOS corelations and management through Ayurveda.
PCOS corelations and management through Ayurveda.
Dr. Shivangi Singh Parihar
 
ANATOMY AND BIOMECHANICS OF HIP JOINT.pdf
ANATOMY AND BIOMECHANICS OF HIP JOINT.pdfANATOMY AND BIOMECHANICS OF HIP JOINT.pdf
ANATOMY AND BIOMECHANICS OF HIP JOINT.pdf
Priyankaranawat4
 
A Independência da América Espanhola LAPBOOK.pdf
A Independência da América Espanhola LAPBOOK.pdfA Independência da América Espanhola LAPBOOK.pdf
A Independência da América Espanhola LAPBOOK.pdf
Jean Carlos Nunes Paixão
 
বাংলাদেশ অর্থনৈতিক সমীক্ষা (Economic Review) ২০২৪ UJS App.pdf
বাংলাদেশ অর্থনৈতিক সমীক্ষা (Economic Review) ২০২৪ UJS App.pdfবাংলাদেশ অর্থনৈতিক সমীক্ষা (Economic Review) ২০২৪ UJS App.pdf
বাংলাদেশ অর্থনৈতিক সমীক্ষা (Economic Review) ২০২৪ UJS App.pdf
eBook.com.bd (প্রয়োজনীয় বাংলা বই)
 
Chapter 4 - Islamic Financial Institutions in Malaysia.pptx
Chapter 4 - Islamic Financial Institutions in Malaysia.pptxChapter 4 - Islamic Financial Institutions in Malaysia.pptx
Chapter 4 - Islamic Financial Institutions in Malaysia.pptx
Mohd Adib Abd Muin, Senior Lecturer at Universiti Utara Malaysia
 
Digital Artefact 1 - Tiny Home Environmental Design
Digital Artefact 1 - Tiny Home Environmental DesignDigital Artefact 1 - Tiny Home Environmental Design
Digital Artefact 1 - Tiny Home Environmental Design
amberjdewit93
 
BÀI TẬP DẠY THÊM TIẾNG ANH LỚP 7 CẢ NĂM FRIENDS PLUS SÁCH CHÂN TRỜI SÁNG TẠO ...
BÀI TẬP DẠY THÊM TIẾNG ANH LỚP 7 CẢ NĂM FRIENDS PLUS SÁCH CHÂN TRỜI SÁNG TẠO ...BÀI TẬP DẠY THÊM TIẾNG ANH LỚP 7 CẢ NĂM FRIENDS PLUS SÁCH CHÂN TRỜI SÁNG TẠO ...
BÀI TẬP DẠY THÊM TIẾNG ANH LỚP 7 CẢ NĂM FRIENDS PLUS SÁCH CHÂN TRỜI SÁNG TẠO ...
Nguyen Thanh Tu Collection
 
spot a liar (Haiqa 146).pptx Technical writhing and presentation skills
spot a liar (Haiqa 146).pptx Technical writhing and presentation skillsspot a liar (Haiqa 146).pptx Technical writhing and presentation skills
spot a liar (Haiqa 146).pptx Technical writhing and presentation skills
haiqairshad
 
Leveraging Generative AI to Drive Nonprofit Innovation
Leveraging Generative AI to Drive Nonprofit InnovationLeveraging Generative AI to Drive Nonprofit Innovation
Leveraging Generative AI to Drive Nonprofit Innovation
TechSoup
 
How to Make a Field Mandatory in Odoo 17
How to Make a Field Mandatory in Odoo 17How to Make a Field Mandatory in Odoo 17
How to Make a Field Mandatory in Odoo 17
Celine George
 
BÀI TẬP BỔ TRỢ TIẾNG ANH 8 CẢ NĂM - GLOBAL SUCCESS - NĂM HỌC 2023-2024 (CÓ FI...
BÀI TẬP BỔ TRỢ TIẾNG ANH 8 CẢ NĂM - GLOBAL SUCCESS - NĂM HỌC 2023-2024 (CÓ FI...BÀI TẬP BỔ TRỢ TIẾNG ANH 8 CẢ NĂM - GLOBAL SUCCESS - NĂM HỌC 2023-2024 (CÓ FI...
BÀI TẬP BỔ TRỢ TIẾNG ANH 8 CẢ NĂM - GLOBAL SUCCESS - NĂM HỌC 2023-2024 (CÓ FI...
Nguyen Thanh Tu Collection
 
How to Manage Your Lost Opportunities in Odoo 17 CRM
How to Manage Your Lost Opportunities in Odoo 17 CRMHow to Manage Your Lost Opportunities in Odoo 17 CRM
How to Manage Your Lost Opportunities in Odoo 17 CRM
Celine George
 
What is Digital Literacy? A guest blog from Andy McLaughlin, University of Ab...
What is Digital Literacy? A guest blog from Andy McLaughlin, University of Ab...What is Digital Literacy? A guest blog from Andy McLaughlin, University of Ab...
What is Digital Literacy? A guest blog from Andy McLaughlin, University of Ab...
GeorgeMilliken2
 
คำศัพท์ คำพื้นฐานการอ่าน ภาษาอังกฤษ ระดับชั้น ม.1
คำศัพท์ คำพื้นฐานการอ่าน ภาษาอังกฤษ ระดับชั้น ม.1คำศัพท์ คำพื้นฐานการอ่าน ภาษาอังกฤษ ระดับชั้น ม.1
คำศัพท์ คำพื้นฐานการอ่าน ภาษาอังกฤษ ระดับชั้น ม.1
สมใจ จันสุกสี
 

Recently uploaded (20)

Liberal Approach to the Study of Indian Politics.pdf
Liberal Approach to the Study of Indian Politics.pdfLiberal Approach to the Study of Indian Politics.pdf
Liberal Approach to the Study of Indian Politics.pdf
 
The Diamonds of 2023-2024 in the IGRA collection
The Diamonds of 2023-2024 in the IGRA collectionThe Diamonds of 2023-2024 in the IGRA collection
The Diamonds of 2023-2024 in the IGRA collection
 
How to Create a More Engaging and Human Online Learning Experience
How to Create a More Engaging and Human Online Learning Experience How to Create a More Engaging and Human Online Learning Experience
How to Create a More Engaging and Human Online Learning Experience
 
LAND USE LAND COVER AND NDVI OF MIRZAPUR DISTRICT, UP
LAND USE LAND COVER AND NDVI OF MIRZAPUR DISTRICT, UPLAND USE LAND COVER AND NDVI OF MIRZAPUR DISTRICT, UP
LAND USE LAND COVER AND NDVI OF MIRZAPUR DISTRICT, UP
 
Beyond Degrees - Empowering the Workforce in the Context of Skills-First.pptx
Beyond Degrees - Empowering the Workforce in the Context of Skills-First.pptxBeyond Degrees - Empowering the Workforce in the Context of Skills-First.pptx
Beyond Degrees - Empowering the Workforce in the Context of Skills-First.pptx
 
ISO/IEC 27001, ISO/IEC 42001, and GDPR: Best Practices for Implementation and...
ISO/IEC 27001, ISO/IEC 42001, and GDPR: Best Practices for Implementation and...ISO/IEC 27001, ISO/IEC 42001, and GDPR: Best Practices for Implementation and...
ISO/IEC 27001, ISO/IEC 42001, and GDPR: Best Practices for Implementation and...
 
PCOS corelations and management through Ayurveda.
PCOS corelations and management through Ayurveda.PCOS corelations and management through Ayurveda.
PCOS corelations and management through Ayurveda.
 
ANATOMY AND BIOMECHANICS OF HIP JOINT.pdf
ANATOMY AND BIOMECHANICS OF HIP JOINT.pdfANATOMY AND BIOMECHANICS OF HIP JOINT.pdf
ANATOMY AND BIOMECHANICS OF HIP JOINT.pdf
 
A Independência da América Espanhola LAPBOOK.pdf
A Independência da América Espanhola LAPBOOK.pdfA Independência da América Espanhola LAPBOOK.pdf
A Independência da América Espanhola LAPBOOK.pdf
 
বাংলাদেশ অর্থনৈতিক সমীক্ষা (Economic Review) ২০২৪ UJS App.pdf
বাংলাদেশ অর্থনৈতিক সমীক্ষা (Economic Review) ২০২৪ UJS App.pdfবাংলাদেশ অর্থনৈতিক সমীক্ষা (Economic Review) ২০২৪ UJS App.pdf
বাংলাদেশ অর্থনৈতিক সমীক্ষা (Economic Review) ২০২৪ UJS App.pdf
 
Chapter 4 - Islamic Financial Institutions in Malaysia.pptx
Chapter 4 - Islamic Financial Institutions in Malaysia.pptxChapter 4 - Islamic Financial Institutions in Malaysia.pptx
Chapter 4 - Islamic Financial Institutions in Malaysia.pptx
 
Digital Artefact 1 - Tiny Home Environmental Design
Digital Artefact 1 - Tiny Home Environmental DesignDigital Artefact 1 - Tiny Home Environmental Design
Digital Artefact 1 - Tiny Home Environmental Design
 
BÀI TẬP DẠY THÊM TIẾNG ANH LỚP 7 CẢ NĂM FRIENDS PLUS SÁCH CHÂN TRỜI SÁNG TẠO ...
BÀI TẬP DẠY THÊM TIẾNG ANH LỚP 7 CẢ NĂM FRIENDS PLUS SÁCH CHÂN TRỜI SÁNG TẠO ...BÀI TẬP DẠY THÊM TIẾNG ANH LỚP 7 CẢ NĂM FRIENDS PLUS SÁCH CHÂN TRỜI SÁNG TẠO ...
BÀI TẬP DẠY THÊM TIẾNG ANH LỚP 7 CẢ NĂM FRIENDS PLUS SÁCH CHÂN TRỜI SÁNG TẠO ...
 
spot a liar (Haiqa 146).pptx Technical writhing and presentation skills
spot a liar (Haiqa 146).pptx Technical writhing and presentation skillsspot a liar (Haiqa 146).pptx Technical writhing and presentation skills
spot a liar (Haiqa 146).pptx Technical writhing and presentation skills
 
Leveraging Generative AI to Drive Nonprofit Innovation
Leveraging Generative AI to Drive Nonprofit InnovationLeveraging Generative AI to Drive Nonprofit Innovation
Leveraging Generative AI to Drive Nonprofit Innovation
 
How to Make a Field Mandatory in Odoo 17
How to Make a Field Mandatory in Odoo 17How to Make a Field Mandatory in Odoo 17
How to Make a Field Mandatory in Odoo 17
 
BÀI TẬP BỔ TRỢ TIẾNG ANH 8 CẢ NĂM - GLOBAL SUCCESS - NĂM HỌC 2023-2024 (CÓ FI...
BÀI TẬP BỔ TRỢ TIẾNG ANH 8 CẢ NĂM - GLOBAL SUCCESS - NĂM HỌC 2023-2024 (CÓ FI...BÀI TẬP BỔ TRỢ TIẾNG ANH 8 CẢ NĂM - GLOBAL SUCCESS - NĂM HỌC 2023-2024 (CÓ FI...
BÀI TẬP BỔ TRỢ TIẾNG ANH 8 CẢ NĂM - GLOBAL SUCCESS - NĂM HỌC 2023-2024 (CÓ FI...
 
How to Manage Your Lost Opportunities in Odoo 17 CRM
How to Manage Your Lost Opportunities in Odoo 17 CRMHow to Manage Your Lost Opportunities in Odoo 17 CRM
How to Manage Your Lost Opportunities in Odoo 17 CRM
 
What is Digital Literacy? A guest blog from Andy McLaughlin, University of Ab...
What is Digital Literacy? A guest blog from Andy McLaughlin, University of Ab...What is Digital Literacy? A guest blog from Andy McLaughlin, University of Ab...
What is Digital Literacy? A guest blog from Andy McLaughlin, University of Ab...
 
คำศัพท์ คำพื้นฐานการอ่าน ภาษาอังกฤษ ระดับชั้น ม.1
คำศัพท์ คำพื้นฐานการอ่าน ภาษาอังกฤษ ระดับชั้น ม.1คำศัพท์ คำพื้นฐานการอ่าน ภาษาอังกฤษ ระดับชั้น ม.1
คำศัพท์ คำพื้นฐานการอ่าน ภาษาอังกฤษ ระดับชั้น ม.1
 

Clifford sugerman

  • 1. 1 1.1 Silberschatz, Galvin and Gagne ©2003Operating System Concepts with Java Chapter 1: IntroductionChapter 1: Introduction n What is an Operating System? n Mainframe Systems n Desktop Systems n Multiprocessor Systems n Distributed Systems n Clustered System n Real -Time Systems n Handheld Systems n Feature Migration n Computing Environments 1.2 Silberschatz, Galvin and Gagne ©2003Operating System Concepts with Java What is an Operating System?What is an Operating System? n A program that acts as an intermediary between a user of a computer and the computer hardware n Operating system goals: l Execute user programs and make solving user problems easier. l Make the computer system convenient to use n Use the computer hardware in an efficient manner
  • 2. 2 1.3 Silberschatz, Galvin and Gagne ©2003Operating System Concepts with Java What is an OS?What is an OS? n Think about some of the things you do with a computer and think about how the OS supports them. © 2004 D.A. Menascé 1.4 Silberschatz, Galvin and Gagne ©2003Operating System Concepts with Java OS FunctionsOS Functions Action OS Functions Login process creation, authentication, resource allocation Create a text document application launching, file management. Running applications Scheduling, resource (e.g., memory, disk) allocation. © 2004 D.A. Menascé
  • 3. 3 1.5 Silberschatz, Galvin and Gagne ©2003Operating System Concepts with Java Some OS FunctionsSome OS Functions • User authentication • Processor allocation (process scheduling) • File Management • Memory Management • Device Management • Network Management • Providing a user interface (graphical or not) to system functions and resources • Process synchronization • Interprocess communication. © 2004 D.A. Menascé 1.6 Silberschatz, Galvin and Gagne ©2003Operating System Concepts with Java What is an Operating SystemWhat is an Operating System n Resource Manager n Extended Machine: provides higher level abstractions of lower level and complex objects (e.g., files, processes, devices) l complexity hidden from user l homogeneous treatment of different low level objects (e.g., one single read function can be used to read a block from any disk) © 2004 D.A. Menascé
  • 4. 4 1.7 Silberschatz, Galvin and Gagne ©2003Operating System Concepts with Java OS OperationOS Operation Bare Machine user processes waiting to run user processes waiting to run OS is sleeping Bare Machine user process is running OS is running © 2004 D.A. Menascé 1.8 Silberschatz, Galvin and Gagne ©2003Operating System Concepts with Java Computer System ComponentsComputer System Components 1. Hardware – provides basic computing resources (CPU, memory, I/O devices) 2. Operating system – controls and coordinates the use of the hardware among the various application programs for the various users 3. Applications programs – define the ways in which the system resources are used to solve the computing problems of the users (compilers, database systems, video games, business programs) 4. Users (people, machines, other computers)
  • 5. 5 1.9 Silberschatz, Galvin and Gagne ©2003Operating System Concepts with Java Abstract View of System ComponentsAbstract View of System Components 1.10 Silberschatz, Galvin and Gagne ©2003Operating System Concepts with Java Operating System DefinitionsOperating System Definitions n Resource allocator – manages and allocates resources n Control program – controls the execution of user programs and operations of I/O devices n Kernel – the one program running at all times (all else being application programs)
  • 6. 6 1.11 Silberschatz, Galvin and Gagne ©2003Operating System Concepts with Java Mainframe SystemsMainframe Systems n Reduce setup time by batching similar jobs n Automatic job sequencing – automatically transfers control from one job to another. First rudimentary operating system n Resident monitor l initial control in monitor l control transfers to job l when job completes control transfers back to monitor 1.12 Silberschatz, Galvin and Gagne ©2003Operating System Concepts with Java IBM 7094 MainframeIBM 7094 Mainframe –– Columbia UniversityColumbia University 19651965 © 2004 D.A. Menascé
  • 7. 7 1.13 Silberschatz, Galvin and Gagne ©2003Operating System Concepts with Java Memory Layout for a Simple Batch SystemMemory Layout for a Simple Batch System 1.14 Silberschatz, Galvin and Gagne ©2003Operating System Concepts with Java MultiprogrammedMultiprogrammed Batch SystemsBatch Systems Several jobs are kept in main memory at the same time, and the CPU is multiplexed among them
  • 8. 8 1.15 Silberschatz, Galvin and Gagne ©2003Operating System Concepts with Java Utilization inUtilization in MultiprogrammedMultiprogrammed SystemsSystems 0 0.1 0.2 0.3 0.4 0.5 0.6 0.7 0.8 0.9 1 0 1 2 3 4 5 6 7 8 9 10 Degree of Multiprogramming Utilization CPU Utilization Disk Utilization © 2004 D.A. Menascé 1.16 Silberschatz, Galvin and Gagne ©2003Operating System Concepts with Java Throughput inThroughput in MultiprogrammedMultiprogrammed SystemsSystems 0 0.001 0.002 0.003 0.004 0.005 0.006 0.007 0 1 2 3 4 5 6 7 8 9 10 Degree of multiprogramming Throughput(jobs/msec) © 2004 D.A. Menascé
  • 9. 9 1.17 Silberschatz, Galvin and Gagne ©2003Operating System Concepts with Java OS Features Needed for MultiprogrammingOS Features Needed for Multiprogramming n I/O routine supplied by the system n Memory management – the system must allocate the memory to several jobs n CPU scheduling – the system must choose among several jobs ready to run n Allocation of devices 1.18 Silberschatz, Galvin and Gagne ©2003Operating System Concepts with Java MultiprogrammingMultiprogramming P1 P2 P3 P4 process using the CPU © 2004 D.A. Menascé
  • 10. 10 1.19 Silberschatz, Galvin and Gagne ©2003Operating System Concepts with Java MultiprogrammingMultiprogramming • The OS gives each process a certain timeslice (quantum) to run. • Control is passed to another process if: • running process ends before timeslice expires running process leaves the system. • running process needs and I/O operation running process joins the I/O device queue, • timeslice expires running process goes back to the CPU queue. © 2004 D.A. Menascé 1.20 Silberschatz, Galvin and Gagne ©2003Operating System Concepts with Java Process States in aProcess States in a MultiprogrammedMultiprogrammed OSOS Running Blocked Ready IO request end of timeslice scheduling IO operation completion © 2004 D.A. Menascé
  • 11. 11 1.21 Silberschatz, Galvin and Gagne ©2003Operating System Concepts with Java TimeTime--Sharing SystemsSharing Systems––Interactive ComputingInteractive Computing n The CPU is multiplexed among several jobs that are kept in memory and on disk (the CPU is allocated to a job only if the job is in memory) n A job is swapped in and out of memory to the disk n On-line communication between the user and the system is provided l When the operating system finishes the execution of one command, it seeks the next “control statement” from the user’s keyboard n On-line system must be available for users to access data and code 1.22 Silberschatz, Galvin and Gagne ©2003Operating System Concepts with Java TimeTime--sharing Queuessharing Queues Swapping disk CPU disk Jobs in memory Arriving job Completing job a b c Ready queue © 2004 D.A. Menascé
  • 12. 12 1.23 Silberschatz, Galvin and Gagne ©2003Operating System Concepts with Java Desktop SystemsDesktop Systems n Personal computers – computer system dedicated to a single user n I/O devices – keyboards, mice, display screens, small printers n User convenience and responsiveness n Can adopt technology developed for larger operating system l Often individuals have sole use of computer and do not need advanced CPU utilization of protection features n May run several different types of operating systems (Windows, MacOS, UNIX, Linux) 1.24 Silberschatz, Galvin and Gagne ©2003Operating System Concepts with Java Parallel SystemsParallel Systems n Systems with more than one CPU in close communication l Also known as multiprocessor systems n Tightly coupled system – processors share memory and a clock; communication usually takes place through the shared memory n Advantages of parallel system: l Increased throughput l Economical l Increased reliability (in some cases) 4graceful degradation 4fail-soft systems
  • 13. 13 1.25 Silberschatz, Galvin and Gagne ©2003Operating System Concepts with Java Parallel SystemsParallel Systems P1 P2 Pn . . .Job queue Prob. System is Up = Prob. at least one processor is up = 1 – Prob (all processors are down) = 1 - pn n 1- p^n 1 0.200 2 0.360 3 0.488 4 0.590 5 0.672 6 0.738 7 0.790 8 0.832 9 0.866 10 0.893 © 2004 D.A. Menascé 1.26 Silberschatz, Galvin and Gagne ©2003Operating System Concepts with Java Parallel Systems (Cont.)Parallel Systems (Cont.) n Asymmetric multiprocessing l Each processor is assigned a specific task; master processor schedules and allocated work to slave processors l More common in extremely large systems n Symmetric multiprocessing (SMP) l Each processor runs and identical copy of the operating system l Many processes can run at once without performance deterioration l Most modern operating systems support SMP
  • 14. 14 1.27 Silberschatz, Galvin and Gagne ©2003Operating System Concepts with Java Symmetric Multiprocessing ArchitectureSymmetric Multiprocessing Architecture 1.28 Silberschatz, Galvin and Gagne ©2003Operating System Concepts with Java Distributed SystemsDistributed Systems n Distribute the computation among several physical processors n Loosely coupled system – each processor has its own local memory; processors communicate with one another through various communications lines, such as high- speed buses or telephone lines n Advantages of distributed systems l Resources Sharing l Computation speed up – load sharing l Reliability l Communications
  • 15. 15 1.29 Silberschatz, Galvin and Gagne ©2003Operating System Concepts with Java Distributed Systems (cont)Distributed Systems (cont) n Requires networking infrastructure n Local area networks (LAN) or Wide area networks (WAN) n May be either client-server or peer-to-peer systems 1.30 Silberschatz, Galvin and Gagne ©2003Operating System Concepts with Java General Structure of ClientGeneral Structure of Client--ServerServer
  • 16. 16 1.31 Silberschatz, Galvin and Gagne ©2003Operating System Concepts with Java Clustered SystemsClustered Systems n Clustering allows two or more systems to share storage n Provides high reliability n Asymmetric clustering: one server runs the application or applications while other servers standby n Symmetric clustering: all N hosts are running the application or applications 1.32 Silberschatz, Galvin and Gagne ©2003Operating System Concepts with Java RealReal--Time SystemsTime Systems n Often used as a control device in a dedicated application such as controlling scientific experiments, medical imaging systems, industrial control systems, and some display systems n Well-defined fixed-time constraints n Real-Time systems may be either hard or soft real-time
  • 17. 17 1.33 Silberschatz, Galvin and Gagne ©2003Operating System Concepts with Java RealReal--Time Systems (Cont.)Time Systems (Cont.) n Hard real-time: l Secondary storage limited or absent, data stored in short term memory, or read-only memory (ROM) l Conflicts with time-sharing systems, not supported by general-purpose operating systems n Soft real-time l Limited utility in industrial control of robotics l Integrate-able with time-share systems l Useful in applications (multimedia, virtual reality) requiring tight response times 1.34 Silberschatz, Galvin and Gagne ©2003Operating System Concepts with Java Handheld SystemsHandheld Systems n Personal Digital Assistants (PDAs) n Cellular telephones n Issues: l Limited memory l Slow processors l Small display screens
  • 18. 18 1.35 Silberschatz, Galvin and Gagne ©2003Operating System Concepts with Java Migration of OperatingMigration of Operating--System Concepts and FeaturesSystem Concepts and Features 1.36 Silberschatz, Galvin and Gagne ©2003Operating System Concepts with Java Computing EnvironmentsComputing Environments n Traditional computing l PCs, Servers, limited remote access n Web-Based Computing l Client-server and web services, convenient remote access, location- less servers n Embedded Computing l Most computers (auto engine controllers, microwaves) l Very limited operating system features l Little or no user interface, remote access