SlideShare una empresa de Scribd logo
1 de 66
Operating
System (OS), in computer science,
the basic software that controls a
computer. The operating system
has three major functions: It
coordinates and manipulates
computer hardware, such as
computer memory, printers, disks,
keyboard, mouse, and monitor; it
organizes files on a variety of
storage media, such as floppy disk,
hard drive, compact disc, digital
video disc, and tape; and it
manages hardware errors and the
loss of data.
1
 A program that controls the execution of
application programs
 An interface between applications and
hardware
 Examples of some operating are:
1. Windows 98
2. Windows XP
3. Windows Vista
4. Windows 7, and the latest
5. Windows 8.
2
 Convenience
 Makes the computer more convenient to use
 Efficiency
 Allows computer system resources to be used in
an efficient manner
 Ability to evolve
 Permit effective development, testing, and
introduction of new system functions without
interfering with service
3
4
 Program development
 Editors and debuggers
 Program execution
 Access to I/O devices
 Controlled access to files
 System access
5
 Error detection and response
 Internal and external hardware errors
 Memory error
 Device failure
 Software errors
 Arithmetic overflow
 Access forbidden memory locations
 Operating system cannot grant request of
application
6
 Accounting
 Collect usage statistics
 Monitor performance
 Used to anticipate future enhancements
 Used for billing purposes
7
 Responsible for
managing
resources.
 Functions same way
as ordinary
computer software
 It is program that is
executed
 Operating system
relinquishes control
of the processor
8
 Portion of operating system that is in main
memory
 Contains most frequently used functions
 Also called the nucleus
9
 Hardware upgrades plus new types of
hardware
 New services
 Fixes
10
 Serial Processing
 No operating system
 Machines run from a console with display lights,
toggle switches, input device, and printer
 Schedule time
 Setup included loading the compiler, source
program, saving compiled program, and loading
and linking
11
 Simple Batch Systems
 Monitors
 Software that controls the sequence of events
 Batch jobs together
 Program branches back to monitor when finished
12
 Special type of programming language
 Provides instruction to the monitor
 What compiler to use
 What data to use
13
 Memory protection
 Do not allow the memory area containing the
monitor to be altered
 Timer
 Prevents a job from monopolizing the system
14
 Privileged instructions
 Certain machine level instructions can only be
executed by the monitor
 Interrupts
 Early computer models did not have this
capability
15
 User program executes in user mode
 Certain instructions may not be executed
 Monitor executes in system mode
 Kernel mode
 Privileged instructions are executed
 Protected areas of memory may be accessed
16
17
 Processor must wait for I/O instruction to
complete before preceding
18
 When one job needs to wait for I/O,
the processor can switch to the other
job
19
20
21
22
 Using multiprogramming to handle multiple
interactive jobs
 Processor’s time is shared among multiple
users
 Multiple users simultaneously access the
system through terminals
23
 First time-sharing system developed at MIT
24
 Processes
 Memory Management
 Information protection and security
 Scheduling and resource management
 System structure
25
 A program in execution
 An instance of a program running on a
computer
 The entity that can be assigned to and
executed on a processor
 A unit of activity characterized by a single
sequential thread of execution, a current
state, and an associated set of system
resources
26
 Improper synchronization
 Ensure a process waiting for an I/O device
receives the signal
 Failed mutual exclusion
 Nondeterminate program operation
 Program should only depend on input to it, not
on the activities of other programs
 Deadlocks
27
 Consists of three components
 An executable program
 Associated data needed by the program
 Execution context of the program
 All information the operating system needs to manage
the process
28
29
 Process isolation
 Automatic allocation and management
 Support of modular programming
 Protection and access control
 Long-term storage
30
 Allows programmers to address memory from
a logical point of view
 No hiatus between the execution of
successive processes while one process was
written out to secondary store and the
successor proceess was read in
31
 Implements long-term store
 Information stored in named objects called
files
32
 Allows process to be comprised of a number
of fixed-size blocks, called pages
 Virtual address is a page number and an
offset within the page
 Each page may be located any where in main
memory
 Real address or physical address in main
memory
33
34
35
 Availability
 Concerned with protecting the system against
interruption
 Confidentiality
 Assuring that users cannot read data for which
access is unauthorized
36
 Data integrity
 Protection of data from unauthorized
modification
 Authenticity
 Concerned with the proper verification of the
identity of users and the validity of messages or
data
37
 Fairness
 Give equal and fair access to resources
 Differential responsiveness
 Discriminate among different classes of jobs
 Efficiency
 Maximize throughput, minimize response time,
and accommodate as many uses as possible
38
39
 View the system as a series of levels
 Each level performs a related subset of
functions
 Each level relies on the next lower level to
perform more primitive functions
 This decomposes a problem into a number of
more manageable subproblems
40
 Level 1
 Electronic circuits
 Objects are registers, memory cells, and logic
gates
 Operations are clearing a register or reading a
memory location
 Level 2
 Processor’s instruction set
 Operations such as add, subtract, load, and store
41
 Level 3
 Adds the concept of a procedure or subroutine,
plus call/return operations
 Level 4
 Interrupts
42
 Level 5
 Process as a program in execution
 Suspend and resume processes
 Level 6
 Secondary storage devices
 Transfer of blocks of data
 Level 7
 Creates logical address space for processes
 Organizes virtual address space into blocks
43
 Level 8
 Communication of information and messages
between processes
 Level 9
 Supports long-term storage of named files
 Level 10
 Provides access to external devices using
standardized interfaces
44
 Level 11
 Responsible for maintaining the association
between the external and internal identifiers
 Level 12
 Provides full-featured facility for the support of
processes
 Level 13
 Provides an interface to the operating system for
the user
45
 Microkernel architecture
 Assigns only a few essential functions to the
kernel
 Address spaces
 Interprocess communication (IPC)
 Basic scheduling
46
 Multithreading
 Process is divided into threads that can run
concurrently
 Thread
Dispatchable unit of work
executes sequentially and is interruptable
 Process is a collection of one or more threads
47
 Symmetric multiprocessing (SMP)
 There are multiple processors
 These processors share same main memory and
I/O facilities
 All processors can perform the same functions
48
49
 Distributed operating systems
 Provides the illusion of a single main memory
space and single secondary memory space
50
 Object-oriented design
 Used for adding modular extensions to a small
kernel
 Enables programmers to customize an operating
system without disrupting system integrity
51
 Modular structure for flexibility
 Executes on a variety of hardware platforms
 Supports application written for other
operating system
52
53
 Modified microkernel architecture
 Not a pure microkernel
 Many system functions outside of the
microkernel run in kernel mode
 Any module can be removed, upgraded, or
replaced without rewriting the entire system
54
 Executive
 Contains base operating system services
 Memory management
 Process and thread management
 Security
 I/O
 Interprocess communication
 Kernel
 Consists of the most used components
55
 Hardware abstraction layer (HAL)
 Isolates the operating system from platform-
specific hardware differences
 Device drivers
 Translate user I/O function calls into specific
hardware device I/O requests
 Windowing and graphics systems
 Implements the graphical user interface (GUI)
56
 I/O manager
 Cache manager
 Object manager
 Plug and play manager
 Power manager
 Security reference monitor
 Virtual memory manager
 Process/thread manager
 Configuration manager
 Local procedure call (LPC) facility
57
 Special system support processes
 Ex: logon process and the session manager
 Service processes
 Environment subsystems
 User applications
58
 Simplifies the Executive
 Possible to construct a variety of APIs
 Improves reliability
 Each service runs on a separate process with its
own partition of memory
 Clients cannot not directly access hardware
 Provides a uniform means for applications to
communicate via LPC
 Provides base for distributed computing
59
 Operating system routines can run on any
available processor
 Different routines can execute
simultaneously on different processors
 Multiple threads of execution within a
single process may execute on different
processors simultaneously
 Server processes may use multiple threads
 Share data and resources between process
60
 Encapsulation
 Object consists of one or more data items and
one or more procedures
 Object class or instance
 Create specified instances of an object
 Inheritance
 Support to some extent in the Executive
 Polymorphism
61
 Hardware is surrounded by the operating
system software
 Operating system is called the system kernel
 Comes with a number of user services and
interfaces
 Shell
 Components of the C compiler
62
63
64
65
 System V Release 4 (SVR4)
 Solaris 9
 4.4BSD
 Linux
66

Más contenido relacionado

La actualidad más candente

Overview of various types of operating system
Overview of various types of operating systemOverview of various types of operating system
Overview of various types of operating systemUmme habiba
 
Operating system presentation
Operating system presentationOperating system presentation
Operating system presentationSonu Vishwakarma
 
Operating system
Operating systemOperating system
Operating systemMadhu Bala
 
Operating Systems & Applications
Operating Systems & ApplicationsOperating Systems & Applications
Operating Systems & ApplicationsMaulen Bale
 
Operating system and its function
Operating system and its functionOperating system and its function
Operating system and its functionNikhi Jain
 
introduction To Operating System
introduction To Operating Systemintroduction To Operating System
introduction To Operating SystemLuka M G
 
Operating Systems
Operating SystemsOperating Systems
Operating Systemsvasomozu56
 
Functions Of Operating System
Functions Of Operating SystemFunctions Of Operating System
Functions Of Operating SystemDr.Suresh Isave
 
Operating system overview concepts ppt
Operating system overview concepts pptOperating system overview concepts ppt
Operating system overview concepts pptRajendraPrasad Alladi
 
Operating system.ppt (1)
Operating system.ppt (1)Operating system.ppt (1)
Operating system.ppt (1)Vaibhav Bajaj
 
chapter 1 intoduction to operating system
chapter 1 intoduction to operating systemchapter 1 intoduction to operating system
chapter 1 intoduction to operating systemSiddhi Viradiya
 
Types of Operating System
Types of Operating SystemTypes of Operating System
Types of Operating SystemHemant Raj
 
Types of operating system
Types of operating systemTypes of operating system
Types of operating systemMohammad Alam
 
Chapter 2 computer system
Chapter 2 computer systemChapter 2 computer system
Chapter 2 computer systemAten Kecik
 

La actualidad más candente (20)

Os ppt
Os pptOs ppt
Os ppt
 
Overview of various types of operating system
Overview of various types of operating systemOverview of various types of operating system
Overview of various types of operating system
 
Operating system presentation
Operating system presentationOperating system presentation
Operating system presentation
 
Operating system
Operating systemOperating system
Operating system
 
Operating Systems & Applications
Operating Systems & ApplicationsOperating Systems & Applications
Operating Systems & Applications
 
An Introduction to Operating Systems
An Introduction to Operating SystemsAn Introduction to Operating Systems
An Introduction to Operating Systems
 
Operating system and its function
Operating system and its functionOperating system and its function
Operating system and its function
 
introduction To Operating System
introduction To Operating Systemintroduction To Operating System
introduction To Operating System
 
Operating Systems
Operating SystemsOperating Systems
Operating Systems
 
Functions Of Operating System
Functions Of Operating SystemFunctions Of Operating System
Functions Of Operating System
 
Types of os
Types of osTypes of os
Types of os
 
Operating systems
Operating systems Operating systems
Operating systems
 
Operating system overview concepts ppt
Operating system overview concepts pptOperating system overview concepts ppt
Operating system overview concepts ppt
 
Operating system
Operating systemOperating system
Operating system
 
Operating system.ppt (1)
Operating system.ppt (1)Operating system.ppt (1)
Operating system.ppt (1)
 
chapter 1 intoduction to operating system
chapter 1 intoduction to operating systemchapter 1 intoduction to operating system
chapter 1 intoduction to operating system
 
The computer HCI
The computer HCIThe computer HCI
The computer HCI
 
Types of Operating System
Types of Operating SystemTypes of Operating System
Types of Operating System
 
Types of operating system
Types of operating systemTypes of operating system
Types of operating system
 
Chapter 2 computer system
Chapter 2 computer systemChapter 2 computer system
Chapter 2 computer system
 

Destacado

Computer Operating System
Computer Operating System Computer Operating System
Computer Operating System Liton Ahmed
 
Functions Of Operating Systems
Functions Of Operating SystemsFunctions Of Operating Systems
Functions Of Operating SystemsAkshay Kurup
 
Big data for Brains (part 3)
Big data for Brains (part 3)Big data for Brains (part 3)
Big data for Brains (part 3)Agnieszka Zdebiak
 
Computer Applications , Computer Operating System , Mobile Operating System ,...
Computer Applications , Computer Operating System , Mobile Operating System ,...Computer Applications , Computer Operating System , Mobile Operating System ,...
Computer Applications , Computer Operating System , Mobile Operating System ,...luckykhandelwal123
 
Application softwares
Application softwaresApplication softwares
Application softwaresvivek shah
 
System Softwares
System SoftwaresSystem Softwares
System Softwaresnshnt_snghl
 
Asynchronous Microservices in nodejs
Asynchronous Microservices in nodejsAsynchronous Microservices in nodejs
Asynchronous Microservices in nodejsBruno Pedro
 
Computer Operating system
Computer Operating systemComputer Operating system
Computer Operating systemMis bah
 
Network architecture
Network architectureNetwork architecture
Network architecturelinghazali
 
Operating System Overview
Operating System OverviewOperating System Overview
Operating System OverviewAnas Ebrahim
 
Operating Systems
Operating SystemsOperating Systems
Operating SystemsDan Hess
 
Transmission Media in Data Communication DC13
Transmission Media in Data Communication DC13Transmission Media in Data Communication DC13
Transmission Media in Data Communication DC13koolkampus
 
Data communication by Phone Lines
Data communication by Phone LinesData communication by Phone Lines
Data communication by Phone LinesMuhammad Ahtsham
 
Cable modems
Cable modemsCable modems
Cable modemsadarud09
 

Destacado (19)

Computer Operating System
Computer Operating System Computer Operating System
Computer Operating System
 
Functions Of Operating Systems
Functions Of Operating SystemsFunctions Of Operating Systems
Functions Of Operating Systems
 
Data Scientist Why now?
Data Scientist Why now?Data Scientist Why now?
Data Scientist Why now?
 
Big data for Brains (part 3)
Big data for Brains (part 3)Big data for Brains (part 3)
Big data for Brains (part 3)
 
Computer Applications , Computer Operating System , Mobile Operating System ,...
Computer Applications , Computer Operating System , Mobile Operating System ,...Computer Applications , Computer Operating System , Mobile Operating System ,...
Computer Applications , Computer Operating System , Mobile Operating System ,...
 
Application softwares
Application softwaresApplication softwares
Application softwares
 
System Softwares
System SoftwaresSystem Softwares
System Softwares
 
Voip
VoipVoip
Voip
 
Asynchronous Microservices in nodejs
Asynchronous Microservices in nodejsAsynchronous Microservices in nodejs
Asynchronous Microservices in nodejs
 
Computer Operating system
Computer Operating systemComputer Operating system
Computer Operating system
 
Network architecture
Network architectureNetwork architecture
Network architecture
 
Transmission media
Transmission mediaTransmission media
Transmission media
 
Operating System Overview
Operating System OverviewOperating System Overview
Operating System Overview
 
Operating Systems
Operating SystemsOperating Systems
Operating Systems
 
Transmission Media in Data Communication DC13
Transmission Media in Data Communication DC13Transmission Media in Data Communication DC13
Transmission Media in Data Communication DC13
 
Data communication by Phone Lines
Data communication by Phone LinesData communication by Phone Lines
Data communication by Phone Lines
 
Cable modems
Cable modemsCable modems
Cable modems
 
Cable modem
Cable modemCable modem
Cable modem
 
Presentation
PresentationPresentation
Presentation
 

Similar a OS Basics: Functions, Components & Architecture

Similar a OS Basics: Functions, Components & Architecture (20)

Chapter 02
Chapter 02Chapter 02
Chapter 02
 
Chapter 02
Chapter 02Chapter 02
Chapter 02
 
Chapter02
Chapter02Chapter02
Chapter02
 
Operating system overview by narender singh sandhu
Operating system overview by narender singh sandhuOperating system overview by narender singh sandhu
Operating system overview by narender singh sandhu
 
Operating system overview by narender singh sandhu
Operating system overview by narender singh sandhuOperating system overview by narender singh sandhu
Operating system overview by narender singh sandhu
 
Lecture 3,4 operating systems
Lecture 3,4   operating systemsLecture 3,4   operating systems
Lecture 3,4 operating systems
 
Lecture 3,4 operating systems
Lecture 3,4   operating systemsLecture 3,4   operating systems
Lecture 3,4 operating systems
 
SISTEMAS OPERATIVOS.pptx
SISTEMAS OPERATIVOS.pptxSISTEMAS OPERATIVOS.pptx
SISTEMAS OPERATIVOS.pptx
 
Chapter02 new
Chapter02 newChapter02 new
Chapter02 new
 
Chapter02
Chapter02Chapter02
Chapter02
 
Chapter02
Chapter02Chapter02
Chapter02
 
Csc 2313 (lecture 2)
Csc 2313 (lecture 2)Csc 2313 (lecture 2)
Csc 2313 (lecture 2)
 
Csc 2313 (lecture 2)
Csc 2313 (lecture 2)Csc 2313 (lecture 2)
Csc 2313 (lecture 2)
 
operating-system-03092013175227-operating-system.ppt
operating-system-03092013175227-operating-system.pptoperating-system-03092013175227-operating-system.ppt
operating-system-03092013175227-operating-system.ppt
 
Ch3 OS
Ch3 OSCh3 OS
Ch3 OS
 
OSCh3
OSCh3OSCh3
OSCh3
 
OS_Ch3
OS_Ch3OS_Ch3
OS_Ch3
 
OS UNIT 1 PPT.pptx
OS UNIT 1 PPT.pptxOS UNIT 1 PPT.pptx
OS UNIT 1 PPT.pptx
 
Firo
FiroFiro
Firo
 
Ch3
Ch3Ch3
Ch3
 

Último

毕业文凭制作#回国入职#diploma#degree美国威斯康星大学欧克莱尔分校毕业证成绩单pdf电子版制作修改#毕业文凭制作#回国入职#diploma#...
毕业文凭制作#回国入职#diploma#degree美国威斯康星大学欧克莱尔分校毕业证成绩单pdf电子版制作修改#毕业文凭制作#回国入职#diploma#...毕业文凭制作#回国入职#diploma#degree美国威斯康星大学欧克莱尔分校毕业证成绩单pdf电子版制作修改#毕业文凭制作#回国入职#diploma#...
毕业文凭制作#回国入职#diploma#degree美国威斯康星大学欧克莱尔分校毕业证成绩单pdf电子版制作修改#毕业文凭制作#回国入职#diploma#...ttt fff
 
2024新版美国旧金山州立大学毕业证成绩单pdf电子版制作修改#毕业文凭制作#回国入职#diploma#degree
2024新版美国旧金山州立大学毕业证成绩单pdf电子版制作修改#毕业文凭制作#回国入职#diploma#degree2024新版美国旧金山州立大学毕业证成绩单pdf电子版制作修改#毕业文凭制作#回国入职#diploma#degree
2024新版美国旧金山州立大学毕业证成绩单pdf电子版制作修改#毕业文凭制作#回国入职#diploma#degreeyuu sss
 
Design and Managing Service in the field of tourism and hospitality industry
Design and Managing Service in the field of tourism and hospitality industryDesign and Managing Service in the field of tourism and hospitality industry
Design and Managing Service in the field of tourism and hospitality industryrioverosanniejoy
 
MT. Marseille an Archipelago. Strategies for Integrating Residential Communit...
MT. Marseille an Archipelago. Strategies for Integrating Residential Communit...MT. Marseille an Archipelago. Strategies for Integrating Residential Communit...
MT. Marseille an Archipelago. Strategies for Integrating Residential Communit...katerynaivanenko1
 
How to Empower the future of UX Design with Gen AI
How to Empower the future of UX Design with Gen AIHow to Empower the future of UX Design with Gen AI
How to Empower the future of UX Design with Gen AIyuj
 
昆士兰大学毕业证(UQ毕业证)#文凭成绩单#真实留信学历认证永久存档
昆士兰大学毕业证(UQ毕业证)#文凭成绩单#真实留信学历认证永久存档昆士兰大学毕业证(UQ毕业证)#文凭成绩单#真实留信学历认证永久存档
昆士兰大学毕业证(UQ毕业证)#文凭成绩单#真实留信学历认证永久存档208367051
 
在线办理ohio毕业证俄亥俄大学毕业证成绩单留信学历认证
在线办理ohio毕业证俄亥俄大学毕业证成绩单留信学历认证在线办理ohio毕业证俄亥俄大学毕业证成绩单留信学历认证
在线办理ohio毕业证俄亥俄大学毕业证成绩单留信学历认证nhjeo1gg
 
1比1办理美国北卡罗莱纳州立大学毕业证成绩单pdf电子版制作修改
1比1办理美国北卡罗莱纳州立大学毕业证成绩单pdf电子版制作修改1比1办理美国北卡罗莱纳州立大学毕业证成绩单pdf电子版制作修改
1比1办理美国北卡罗莱纳州立大学毕业证成绩单pdf电子版制作修改yuu sss
 
Iconic Global Solution - web design, Digital Marketing services
Iconic Global Solution - web design, Digital Marketing servicesIconic Global Solution - web design, Digital Marketing services
Iconic Global Solution - web design, Digital Marketing servicesIconic global solution
 
cda.pptx critical discourse analysis ppt
cda.pptx critical discourse analysis pptcda.pptx critical discourse analysis ppt
cda.pptx critical discourse analysis pptMaryamAfzal41
 
西北大学毕业证学位证成绩单-怎么样办伪造
西北大学毕业证学位证成绩单-怎么样办伪造西北大学毕业证学位证成绩单-怎么样办伪造
西北大学毕业证学位证成绩单-怎么样办伪造kbdhl05e
 
Pharmaceutical Packaging for the elderly.pdf
Pharmaceutical Packaging for the elderly.pdfPharmaceutical Packaging for the elderly.pdf
Pharmaceutical Packaging for the elderly.pdfAayushChavan5
 
DAKSHIN BIHAR GRAMIN BANK: REDEFINING THE DIGITAL BANKING EXPERIENCE WITH A U...
DAKSHIN BIHAR GRAMIN BANK: REDEFINING THE DIGITAL BANKING EXPERIENCE WITH A U...DAKSHIN BIHAR GRAMIN BANK: REDEFINING THE DIGITAL BANKING EXPERIENCE WITH A U...
DAKSHIN BIHAR GRAMIN BANK: REDEFINING THE DIGITAL BANKING EXPERIENCE WITH A U...Rishabh Aryan
 
Call Girls in Ashok Nagar Delhi ✡️9711147426✡️ Escorts Service
Call Girls in Ashok Nagar Delhi ✡️9711147426✡️ Escorts ServiceCall Girls in Ashok Nagar Delhi ✡️9711147426✡️ Escorts Service
Call Girls in Ashok Nagar Delhi ✡️9711147426✡️ Escorts Servicejennyeacort
 
Top 10 Modern Web Design Trends for 2025
Top 10 Modern Web Design Trends for 2025Top 10 Modern Web Design Trends for 2025
Top 10 Modern Web Design Trends for 2025Rndexperts
 
Untitled presedddddddddddddddddntation (1).pptx
Untitled presedddddddddddddddddntation (1).pptxUntitled presedddddddddddddddddntation (1).pptx
Untitled presedddddddddddddddddntation (1).pptxmapanig881
 
'CASE STUDY OF INDIRA PARYAVARAN BHAVAN DELHI ,
'CASE STUDY OF INDIRA PARYAVARAN BHAVAN DELHI ,'CASE STUDY OF INDIRA PARYAVARAN BHAVAN DELHI ,
'CASE STUDY OF INDIRA PARYAVARAN BHAVAN DELHI ,Aginakm1
 
Pearl Disrtrict urban analyusis study pptx
Pearl Disrtrict urban analyusis study pptxPearl Disrtrict urban analyusis study pptx
Pearl Disrtrict urban analyusis study pptxDanielTamiru4
 
General Knowledge Quiz Game C++ CODE.pptx
General Knowledge Quiz Game C++ CODE.pptxGeneral Knowledge Quiz Game C++ CODE.pptx
General Knowledge Quiz Game C++ CODE.pptxmarckustrevion
 
澳洲UQ学位证,昆士兰大学毕业证书1:1制作
澳洲UQ学位证,昆士兰大学毕业证书1:1制作澳洲UQ学位证,昆士兰大学毕业证书1:1制作
澳洲UQ学位证,昆士兰大学毕业证书1:1制作aecnsnzk
 

Último (20)

毕业文凭制作#回国入职#diploma#degree美国威斯康星大学欧克莱尔分校毕业证成绩单pdf电子版制作修改#毕业文凭制作#回国入职#diploma#...
毕业文凭制作#回国入职#diploma#degree美国威斯康星大学欧克莱尔分校毕业证成绩单pdf电子版制作修改#毕业文凭制作#回国入职#diploma#...毕业文凭制作#回国入职#diploma#degree美国威斯康星大学欧克莱尔分校毕业证成绩单pdf电子版制作修改#毕业文凭制作#回国入职#diploma#...
毕业文凭制作#回国入职#diploma#degree美国威斯康星大学欧克莱尔分校毕业证成绩单pdf电子版制作修改#毕业文凭制作#回国入职#diploma#...
 
2024新版美国旧金山州立大学毕业证成绩单pdf电子版制作修改#毕业文凭制作#回国入职#diploma#degree
2024新版美国旧金山州立大学毕业证成绩单pdf电子版制作修改#毕业文凭制作#回国入职#diploma#degree2024新版美国旧金山州立大学毕业证成绩单pdf电子版制作修改#毕业文凭制作#回国入职#diploma#degree
2024新版美国旧金山州立大学毕业证成绩单pdf电子版制作修改#毕业文凭制作#回国入职#diploma#degree
 
Design and Managing Service in the field of tourism and hospitality industry
Design and Managing Service in the field of tourism and hospitality industryDesign and Managing Service in the field of tourism and hospitality industry
Design and Managing Service in the field of tourism and hospitality industry
 
MT. Marseille an Archipelago. Strategies for Integrating Residential Communit...
MT. Marseille an Archipelago. Strategies for Integrating Residential Communit...MT. Marseille an Archipelago. Strategies for Integrating Residential Communit...
MT. Marseille an Archipelago. Strategies for Integrating Residential Communit...
 
How to Empower the future of UX Design with Gen AI
How to Empower the future of UX Design with Gen AIHow to Empower the future of UX Design with Gen AI
How to Empower the future of UX Design with Gen AI
 
昆士兰大学毕业证(UQ毕业证)#文凭成绩单#真实留信学历认证永久存档
昆士兰大学毕业证(UQ毕业证)#文凭成绩单#真实留信学历认证永久存档昆士兰大学毕业证(UQ毕业证)#文凭成绩单#真实留信学历认证永久存档
昆士兰大学毕业证(UQ毕业证)#文凭成绩单#真实留信学历认证永久存档
 
在线办理ohio毕业证俄亥俄大学毕业证成绩单留信学历认证
在线办理ohio毕业证俄亥俄大学毕业证成绩单留信学历认证在线办理ohio毕业证俄亥俄大学毕业证成绩单留信学历认证
在线办理ohio毕业证俄亥俄大学毕业证成绩单留信学历认证
 
1比1办理美国北卡罗莱纳州立大学毕业证成绩单pdf电子版制作修改
1比1办理美国北卡罗莱纳州立大学毕业证成绩单pdf电子版制作修改1比1办理美国北卡罗莱纳州立大学毕业证成绩单pdf电子版制作修改
1比1办理美国北卡罗莱纳州立大学毕业证成绩单pdf电子版制作修改
 
Iconic Global Solution - web design, Digital Marketing services
Iconic Global Solution - web design, Digital Marketing servicesIconic Global Solution - web design, Digital Marketing services
Iconic Global Solution - web design, Digital Marketing services
 
cda.pptx critical discourse analysis ppt
cda.pptx critical discourse analysis pptcda.pptx critical discourse analysis ppt
cda.pptx critical discourse analysis ppt
 
西北大学毕业证学位证成绩单-怎么样办伪造
西北大学毕业证学位证成绩单-怎么样办伪造西北大学毕业证学位证成绩单-怎么样办伪造
西北大学毕业证学位证成绩单-怎么样办伪造
 
Pharmaceutical Packaging for the elderly.pdf
Pharmaceutical Packaging for the elderly.pdfPharmaceutical Packaging for the elderly.pdf
Pharmaceutical Packaging for the elderly.pdf
 
DAKSHIN BIHAR GRAMIN BANK: REDEFINING THE DIGITAL BANKING EXPERIENCE WITH A U...
DAKSHIN BIHAR GRAMIN BANK: REDEFINING THE DIGITAL BANKING EXPERIENCE WITH A U...DAKSHIN BIHAR GRAMIN BANK: REDEFINING THE DIGITAL BANKING EXPERIENCE WITH A U...
DAKSHIN BIHAR GRAMIN BANK: REDEFINING THE DIGITAL BANKING EXPERIENCE WITH A U...
 
Call Girls in Ashok Nagar Delhi ✡️9711147426✡️ Escorts Service
Call Girls in Ashok Nagar Delhi ✡️9711147426✡️ Escorts ServiceCall Girls in Ashok Nagar Delhi ✡️9711147426✡️ Escorts Service
Call Girls in Ashok Nagar Delhi ✡️9711147426✡️ Escorts Service
 
Top 10 Modern Web Design Trends for 2025
Top 10 Modern Web Design Trends for 2025Top 10 Modern Web Design Trends for 2025
Top 10 Modern Web Design Trends for 2025
 
Untitled presedddddddddddddddddntation (1).pptx
Untitled presedddddddddddddddddntation (1).pptxUntitled presedddddddddddddddddntation (1).pptx
Untitled presedddddddddddddddddntation (1).pptx
 
'CASE STUDY OF INDIRA PARYAVARAN BHAVAN DELHI ,
'CASE STUDY OF INDIRA PARYAVARAN BHAVAN DELHI ,'CASE STUDY OF INDIRA PARYAVARAN BHAVAN DELHI ,
'CASE STUDY OF INDIRA PARYAVARAN BHAVAN DELHI ,
 
Pearl Disrtrict urban analyusis study pptx
Pearl Disrtrict urban analyusis study pptxPearl Disrtrict urban analyusis study pptx
Pearl Disrtrict urban analyusis study pptx
 
General Knowledge Quiz Game C++ CODE.pptx
General Knowledge Quiz Game C++ CODE.pptxGeneral Knowledge Quiz Game C++ CODE.pptx
General Knowledge Quiz Game C++ CODE.pptx
 
澳洲UQ学位证,昆士兰大学毕业证书1:1制作
澳洲UQ学位证,昆士兰大学毕业证书1:1制作澳洲UQ学位证,昆士兰大学毕业证书1:1制作
澳洲UQ学位证,昆士兰大学毕业证书1:1制作
 

OS Basics: Functions, Components & Architecture

  • 1. Operating System (OS), in computer science, the basic software that controls a computer. The operating system has three major functions: It coordinates and manipulates computer hardware, such as computer memory, printers, disks, keyboard, mouse, and monitor; it organizes files on a variety of storage media, such as floppy disk, hard drive, compact disc, digital video disc, and tape; and it manages hardware errors and the loss of data. 1
  • 2.  A program that controls the execution of application programs  An interface between applications and hardware  Examples of some operating are: 1. Windows 98 2. Windows XP 3. Windows Vista 4. Windows 7, and the latest 5. Windows 8. 2
  • 3.  Convenience  Makes the computer more convenient to use  Efficiency  Allows computer system resources to be used in an efficient manner  Ability to evolve  Permit effective development, testing, and introduction of new system functions without interfering with service 3
  • 4. 4
  • 5.  Program development  Editors and debuggers  Program execution  Access to I/O devices  Controlled access to files  System access 5
  • 6.  Error detection and response  Internal and external hardware errors  Memory error  Device failure  Software errors  Arithmetic overflow  Access forbidden memory locations  Operating system cannot grant request of application 6
  • 7.  Accounting  Collect usage statistics  Monitor performance  Used to anticipate future enhancements  Used for billing purposes 7
  • 8.  Responsible for managing resources.  Functions same way as ordinary computer software  It is program that is executed  Operating system relinquishes control of the processor 8
  • 9.  Portion of operating system that is in main memory  Contains most frequently used functions  Also called the nucleus 9
  • 10.  Hardware upgrades plus new types of hardware  New services  Fixes 10
  • 11.  Serial Processing  No operating system  Machines run from a console with display lights, toggle switches, input device, and printer  Schedule time  Setup included loading the compiler, source program, saving compiled program, and loading and linking 11
  • 12.  Simple Batch Systems  Monitors  Software that controls the sequence of events  Batch jobs together  Program branches back to monitor when finished 12
  • 13.  Special type of programming language  Provides instruction to the monitor  What compiler to use  What data to use 13
  • 14.  Memory protection  Do not allow the memory area containing the monitor to be altered  Timer  Prevents a job from monopolizing the system 14
  • 15.  Privileged instructions  Certain machine level instructions can only be executed by the monitor  Interrupts  Early computer models did not have this capability 15
  • 16.  User program executes in user mode  Certain instructions may not be executed  Monitor executes in system mode  Kernel mode  Privileged instructions are executed  Protected areas of memory may be accessed 16
  • 17. 17
  • 18.  Processor must wait for I/O instruction to complete before preceding 18
  • 19.  When one job needs to wait for I/O, the processor can switch to the other job 19
  • 20. 20
  • 21. 21
  • 22. 22
  • 23.  Using multiprogramming to handle multiple interactive jobs  Processor’s time is shared among multiple users  Multiple users simultaneously access the system through terminals 23
  • 24.  First time-sharing system developed at MIT 24
  • 25.  Processes  Memory Management  Information protection and security  Scheduling and resource management  System structure 25
  • 26.  A program in execution  An instance of a program running on a computer  The entity that can be assigned to and executed on a processor  A unit of activity characterized by a single sequential thread of execution, a current state, and an associated set of system resources 26
  • 27.  Improper synchronization  Ensure a process waiting for an I/O device receives the signal  Failed mutual exclusion  Nondeterminate program operation  Program should only depend on input to it, not on the activities of other programs  Deadlocks 27
  • 28.  Consists of three components  An executable program  Associated data needed by the program  Execution context of the program  All information the operating system needs to manage the process 28
  • 29. 29
  • 30.  Process isolation  Automatic allocation and management  Support of modular programming  Protection and access control  Long-term storage 30
  • 31.  Allows programmers to address memory from a logical point of view  No hiatus between the execution of successive processes while one process was written out to secondary store and the successor proceess was read in 31
  • 32.  Implements long-term store  Information stored in named objects called files 32
  • 33.  Allows process to be comprised of a number of fixed-size blocks, called pages  Virtual address is a page number and an offset within the page  Each page may be located any where in main memory  Real address or physical address in main memory 33
  • 34. 34
  • 35. 35
  • 36.  Availability  Concerned with protecting the system against interruption  Confidentiality  Assuring that users cannot read data for which access is unauthorized 36
  • 37.  Data integrity  Protection of data from unauthorized modification  Authenticity  Concerned with the proper verification of the identity of users and the validity of messages or data 37
  • 38.  Fairness  Give equal and fair access to resources  Differential responsiveness  Discriminate among different classes of jobs  Efficiency  Maximize throughput, minimize response time, and accommodate as many uses as possible 38
  • 39. 39
  • 40.  View the system as a series of levels  Each level performs a related subset of functions  Each level relies on the next lower level to perform more primitive functions  This decomposes a problem into a number of more manageable subproblems 40
  • 41.  Level 1  Electronic circuits  Objects are registers, memory cells, and logic gates  Operations are clearing a register or reading a memory location  Level 2  Processor’s instruction set  Operations such as add, subtract, load, and store 41
  • 42.  Level 3  Adds the concept of a procedure or subroutine, plus call/return operations  Level 4  Interrupts 42
  • 43.  Level 5  Process as a program in execution  Suspend and resume processes  Level 6  Secondary storage devices  Transfer of blocks of data  Level 7  Creates logical address space for processes  Organizes virtual address space into blocks 43
  • 44.  Level 8  Communication of information and messages between processes  Level 9  Supports long-term storage of named files  Level 10  Provides access to external devices using standardized interfaces 44
  • 45.  Level 11  Responsible for maintaining the association between the external and internal identifiers  Level 12  Provides full-featured facility for the support of processes  Level 13  Provides an interface to the operating system for the user 45
  • 46.  Microkernel architecture  Assigns only a few essential functions to the kernel  Address spaces  Interprocess communication (IPC)  Basic scheduling 46
  • 47.  Multithreading  Process is divided into threads that can run concurrently  Thread Dispatchable unit of work executes sequentially and is interruptable  Process is a collection of one or more threads 47
  • 48.  Symmetric multiprocessing (SMP)  There are multiple processors  These processors share same main memory and I/O facilities  All processors can perform the same functions 48
  • 49. 49
  • 50.  Distributed operating systems  Provides the illusion of a single main memory space and single secondary memory space 50
  • 51.  Object-oriented design  Used for adding modular extensions to a small kernel  Enables programmers to customize an operating system without disrupting system integrity 51
  • 52.  Modular structure for flexibility  Executes on a variety of hardware platforms  Supports application written for other operating system 52
  • 53. 53
  • 54.  Modified microkernel architecture  Not a pure microkernel  Many system functions outside of the microkernel run in kernel mode  Any module can be removed, upgraded, or replaced without rewriting the entire system 54
  • 55.  Executive  Contains base operating system services  Memory management  Process and thread management  Security  I/O  Interprocess communication  Kernel  Consists of the most used components 55
  • 56.  Hardware abstraction layer (HAL)  Isolates the operating system from platform- specific hardware differences  Device drivers  Translate user I/O function calls into specific hardware device I/O requests  Windowing and graphics systems  Implements the graphical user interface (GUI) 56
  • 57.  I/O manager  Cache manager  Object manager  Plug and play manager  Power manager  Security reference monitor  Virtual memory manager  Process/thread manager  Configuration manager  Local procedure call (LPC) facility 57
  • 58.  Special system support processes  Ex: logon process and the session manager  Service processes  Environment subsystems  User applications 58
  • 59.  Simplifies the Executive  Possible to construct a variety of APIs  Improves reliability  Each service runs on a separate process with its own partition of memory  Clients cannot not directly access hardware  Provides a uniform means for applications to communicate via LPC  Provides base for distributed computing 59
  • 60.  Operating system routines can run on any available processor  Different routines can execute simultaneously on different processors  Multiple threads of execution within a single process may execute on different processors simultaneously  Server processes may use multiple threads  Share data and resources between process 60
  • 61.  Encapsulation  Object consists of one or more data items and one or more procedures  Object class or instance  Create specified instances of an object  Inheritance  Support to some extent in the Executive  Polymorphism 61
  • 62.  Hardware is surrounded by the operating system software  Operating system is called the system kernel  Comes with a number of user services and interfaces  Shell  Components of the C compiler 62
  • 63. 63
  • 64. 64
  • 65. 65
  • 66.  System V Release 4 (SVR4)  Solaris 9  4.4BSD  Linux 66