SlideShare a Scribd company logo
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

More Related Content

What's hot

Operating system 08 time sharing and multitasking operating system
Operating system 08 time sharing and multitasking operating systemOperating system 08 time sharing and multitasking operating system
Operating system 08 time sharing and multitasking operating system
Vaibhav Khanna
 
Operating Systems
Operating SystemsOperating Systems
Operating Systems
Harshith Meela
 
Operating Systems
Operating SystemsOperating Systems
Operating Systems
Mohamed Loey
 
Operating Systems & Applications
Operating Systems & ApplicationsOperating Systems & Applications
Operating Systems & Applications
Maulen Bale
 
The Basic Organization of Computers
The Basic Organization of ComputersThe Basic Organization of Computers
The Basic Organization of Computers
Tallat Satti
 
Operating systems system structures
Operating systems   system structuresOperating systems   system structures
Operating systems system structures
Mukesh Chinta
 
Computer Software
Computer SoftwareComputer Software
Computer Software
norzaini
 
Operating system and its functions
Operating system and its functionsOperating system and its functions
Operating system and its functions
Namarta Chawla
 
Troubleshooting and maintenance
Troubleshooting and maintenanceTroubleshooting and maintenance
Troubleshooting and maintenance
Tech Bikram
 
introduction To Operating System
introduction To Operating Systemintroduction To Operating System
introduction To Operating System
Luka M G
 
Operating system
Operating systemOperating system
Operating system
Saransh Arora
 
Basics of Computer for Students
Basics of Computer for StudentsBasics of Computer for Students
Basics of Computer for Students
vethics
 
Operating systems
Operating systemsOperating systems
Operating systems
Ujjwal 'Shanu'
 
Operating system presentation
Operating system presentationOperating system presentation
Operating system presentation
Sonu Vishwakarma
 
Operating Systems Presentation
Operating Systems Presentation Operating Systems Presentation
Operating Systems Presentation
Mayank Thanki
 
file system in operating system
file system in operating systemfile system in operating system
file system in operating system
tittuajay
 
Operating system.ppt (1)
Operating system.ppt (1)Operating system.ppt (1)
Operating system.ppt (1)
Vaibhav Bajaj
 
Virtual memory
Virtual memoryVirtual memory
Virtual memory
Anuj Modi
 
Operating system memory management
Operating system memory managementOperating system memory management
Operating system memory management
rprajat007
 
Essential Computer Concepts
Essential Computer ConceptsEssential Computer Concepts
Essential Computer Concepts
kimfrancis
 

What's hot (20)

Operating system 08 time sharing and multitasking operating system
Operating system 08 time sharing and multitasking operating systemOperating system 08 time sharing and multitasking operating system
Operating system 08 time sharing and multitasking operating system
 
Operating Systems
Operating SystemsOperating Systems
Operating Systems
 
Operating Systems
Operating SystemsOperating Systems
Operating Systems
 
Operating Systems & Applications
Operating Systems & ApplicationsOperating Systems & Applications
Operating Systems & Applications
 
The Basic Organization of Computers
The Basic Organization of ComputersThe Basic Organization of Computers
The Basic Organization of Computers
 
Operating systems system structures
Operating systems   system structuresOperating systems   system structures
Operating systems system structures
 
Computer Software
Computer SoftwareComputer Software
Computer Software
 
Operating system and its functions
Operating system and its functionsOperating system and its functions
Operating system and its functions
 
Troubleshooting and maintenance
Troubleshooting and maintenanceTroubleshooting and maintenance
Troubleshooting and maintenance
 
introduction To Operating System
introduction To Operating Systemintroduction To Operating System
introduction To Operating System
 
Operating system
Operating systemOperating system
Operating system
 
Basics of Computer for Students
Basics of Computer for StudentsBasics of Computer for Students
Basics of Computer for Students
 
Operating systems
Operating systemsOperating systems
Operating systems
 
Operating system presentation
Operating system presentationOperating system presentation
Operating system presentation
 
Operating Systems Presentation
Operating Systems Presentation Operating Systems Presentation
Operating Systems Presentation
 
file system in operating system
file system in operating systemfile system in operating system
file system in operating system
 
Operating system.ppt (1)
Operating system.ppt (1)Operating system.ppt (1)
Operating system.ppt (1)
 
Virtual memory
Virtual memoryVirtual memory
Virtual memory
 
Operating system memory management
Operating system memory managementOperating system memory management
Operating system memory management
 
Essential Computer Concepts
Essential Computer ConceptsEssential Computer Concepts
Essential Computer Concepts
 

Viewers also liked

Computer Operating System
Computer Operating System Computer Operating System
Computer Operating System
Liton Ahmed
 
Functions Of Operating System
Functions Of Operating SystemFunctions Of Operating System
Functions Of Operating System
Dr.Suresh Isave
 
Functions Of Operating Systems
Functions Of Operating SystemsFunctions Of Operating Systems
Functions Of Operating Systems
Akshay Kurup
 
Operating system and its function
Operating system and its functionOperating system and its function
Operating system and its function
Nikhi Jain
 
Operating system overview concepts ppt
Operating system overview concepts pptOperating system overview concepts ppt
Operating system overview concepts ppt
RajendraPrasad Alladi
 
Data Scientist Why now?
Data Scientist Why now?Data Scientist Why now?
Data Scientist Why now?
Agnieszka Zdebiak
 
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 softwares
vivek shah
 
System Softwares
System SoftwaresSystem Softwares
System Softwares
nshnt_snghl
 
Voip
VoipVoip
Asynchronous Microservices in nodejs
Asynchronous Microservices in nodejsAsynchronous Microservices in nodejs
Asynchronous Microservices in nodejs
Bruno Pedro
 
Computer Operating system
Computer Operating systemComputer Operating system
Computer Operating system
Mis bah
 
Network architecture
Network architectureNetwork architecture
Network architecture
linghazali
 
Transmission media
Transmission mediaTransmission media
Transmission media
jyoti_lakhani
 
Operating System Overview
Operating System OverviewOperating System Overview
Operating System Overview
Anas Ebrahim
 
Operating Systems
Operating SystemsOperating Systems
Operating Systems
Dan Hess
 
Transmission Media in Data Communication DC13
Transmission Media in Data Communication DC13Transmission Media in Data Communication DC13
Transmission Media in Data Communication DC13
koolkampus
 
Data communication by Phone Lines
Data communication by Phone LinesData communication by Phone Lines
Data communication by Phone Lines
Muhammad Ahtsham
 
Cable modems
Cable modemsCable modems
Cable modems
adarud09
 

Viewers also liked (20)

Computer Operating System
Computer Operating System Computer Operating System
Computer Operating System
 
Functions Of Operating System
Functions Of Operating SystemFunctions Of Operating System
Functions Of Operating System
 
Functions Of Operating Systems
Functions Of Operating SystemsFunctions Of Operating Systems
Functions Of Operating Systems
 
Operating system and its function
Operating system and its functionOperating system and its function
Operating system and its function
 
Operating system overview concepts ppt
Operating system overview concepts pptOperating system overview concepts ppt
Operating system overview concepts ppt
 
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
 

Similar to Operating System Overview.

Chapter 02
Chapter 02Chapter 02
Chapter 02
Dolly Bhateja
 
Chapter 02
Chapter 02Chapter 02
Chapter 02
m25farid
 
Chapter02
Chapter02Chapter02
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
NARENDER SINGH
 
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
NarenderSinghSandhu2
 
Lecture 3,4 operating systems
Lecture 3,4   operating systemsLecture 3,4   operating systems
Lecture 3,4 operating systems
Pradeep Kumar TS
 
Lecture 3,4 operating systems
Lecture 3,4   operating systemsLecture 3,4   operating systems
Lecture 3,4 operating systems
Pradeep Kumar TS
 
SISTEMAS OPERATIVOS.pptx
SISTEMAS OPERATIVOS.pptxSISTEMAS OPERATIVOS.pptx
SISTEMAS OPERATIVOS.pptx
AnalistaSoporte
 
Chapter02 new
Chapter02 newChapter02 new
Chapter02 new
vmummaneni
 
Chapter02
Chapter02Chapter02
Chapter02
Chapter02Chapter02
Chapter02
kamran zamanifar
 
Csc 2313 (lecture 2)
Csc 2313 (lecture 2)Csc 2313 (lecture 2)
Csc 2313 (lecture 2)
umardanjumamaiwada
 
Csc 2313 (lecture 2)
Csc 2313 (lecture 2)Csc 2313 (lecture 2)
Csc 2313 (lecture 2)
umardanjumamaiwada
 
operating-system-03092013175227-operating-system.ppt
operating-system-03092013175227-operating-system.pptoperating-system-03092013175227-operating-system.ppt
operating-system-03092013175227-operating-system.ppt
TiktokIndia2
 
Chapter -2 Operating-System and its Structures
Chapter -2 Operating-System and its StructuresChapter -2 Operating-System and its Structures
Chapter -2 Operating-System and its Structures
Chandrakant Divate
 
Ch3 OS
Ch3 OSCh3 OS
Ch3 OS
C.U
 
OS_Ch3
OS_Ch3OS_Ch3
OSCh3
OSCh3OSCh3
OS UNIT 1 PPT.pptx
OS UNIT 1 PPT.pptxOS UNIT 1 PPT.pptx
OS UNIT 1 PPT.pptx
PRABAVATHIH
 
Firo
FiroFiro

Similar to Operating System Overview. (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
 
Chapter -2 Operating-System and its Structures
Chapter -2 Operating-System and its StructuresChapter -2 Operating-System and its Structures
Chapter -2 Operating-System and its Structures
 
Ch3 OS
Ch3 OSCh3 OS
Ch3 OS
 
OS_Ch3
OS_Ch3OS_Ch3
OS_Ch3
 
OSCh3
OSCh3OSCh3
OSCh3
 
OS UNIT 1 PPT.pptx
OS UNIT 1 PPT.pptxOS UNIT 1 PPT.pptx
OS UNIT 1 PPT.pptx
 
Firo
FiroFiro
Firo
 

Recently uploaded

AHMED TALAAT ARCHITECTURE PORTFOLIO .pdf
AHMED TALAAT ARCHITECTURE PORTFOLIO .pdfAHMED TALAAT ARCHITECTURE PORTFOLIO .pdf
AHMED TALAAT ARCHITECTURE PORTFOLIO .pdf
talaatahm
 
Revolutionizing the Digital Landscape: Web Development Companies in India
Revolutionizing the Digital Landscape: Web Development Companies in IndiaRevolutionizing the Digital Landscape: Web Development Companies in India
Revolutionizing the Digital Landscape: Web Development Companies in India
amrsoftec1
 
Practical eLearning Makeovers for Everyone
Practical eLearning Makeovers for EveryonePractical eLearning Makeovers for Everyone
Practical eLearning Makeovers for Everyone
Bianca Woods
 
Storytelling For The Web: Integrate Storytelling in your Design Process
Storytelling For The Web: Integrate Storytelling in your Design ProcessStorytelling For The Web: Integrate Storytelling in your Design Process
Storytelling For The Web: Integrate Storytelling in your Design Process
Chiara Aliotta
 
一比一原版(LSBU毕业证书)伦敦南岸大学毕业证如何办理
一比一原版(LSBU毕业证书)伦敦南岸大学毕业证如何办理一比一原版(LSBU毕业证书)伦敦南岸大学毕业证如何办理
一比一原版(LSBU毕业证书)伦敦南岸大学毕业证如何办理
k7nm6tk
 
ZAPATILLAS 2 X 110 ABRIL.pdf compra economico
ZAPATILLAS 2 X 110 ABRIL.pdf compra economicoZAPATILLAS 2 X 110 ABRIL.pdf compra economico
ZAPATILLAS 2 X 110 ABRIL.pdf compra economico
jhonguerrerobarturen
 
ARENA - Young adults in the workplace (Knight Moves).pdf
ARENA - Young adults in the workplace (Knight Moves).pdfARENA - Young adults in the workplace (Knight Moves).pdf
ARENA - Young adults in the workplace (Knight Moves).pdf
Knight Moves
 
Technoblade The Legacy of a Minecraft Legend.
Technoblade The Legacy of a Minecraft Legend.Technoblade The Legacy of a Minecraft Legend.
Technoblade The Legacy of a Minecraft Legend.
Techno Merch
 
一比一原版(BU毕业证)波士顿大学毕业证如何办理
一比一原版(BU毕业证)波士顿大学毕业证如何办理一比一原版(BU毕业证)波士顿大学毕业证如何办理
一比一原版(BU毕业证)波士顿大学毕业证如何办理
peuce
 
NHR Engineers Portfolio 2023 2024 NISHANT RATHI
NHR Engineers Portfolio 2023 2024 NISHANT RATHINHR Engineers Portfolio 2023 2024 NISHANT RATHI
NHR Engineers Portfolio 2023 2024 NISHANT RATHI
NishantRathi18
 
Timeless Principles of Good Design
Timeless Principles of Good DesignTimeless Principles of Good Design
Timeless Principles of Good Design
Carolina de Bartolo
 
Top Interior Designers in Bangalore.pdf1
Top Interior Designers in Bangalore.pdf1Top Interior Designers in Bangalore.pdf1
Top Interior Designers in Bangalore.pdf1
Decomart Studio
 
Heuristics Evaluation - How to Guide.pdf
Heuristics Evaluation - How to Guide.pdfHeuristics Evaluation - How to Guide.pdf
Heuristics Evaluation - How to Guide.pdf
Jaime Brown
 
PDF SubmissionDigital Marketing Institute in Noida
PDF SubmissionDigital Marketing Institute in NoidaPDF SubmissionDigital Marketing Institute in Noida
PDF SubmissionDigital Marketing Institute in Noida
PoojaSaini954651
 
Maximize Your Content with Beautiful Assets : Content & Asset for Landing Page
Maximize Your Content with Beautiful Assets : Content & Asset for Landing Page Maximize Your Content with Beautiful Assets : Content & Asset for Landing Page
Maximize Your Content with Beautiful Assets : Content & Asset for Landing Page
pmgdscunsri
 
Virtual Tour Application Powerpoint for museum of edinburgh
Virtual Tour Application Powerpoint for museum of edinburghVirtual Tour Application Powerpoint for museum of edinburgh
Virtual Tour Application Powerpoint for museum of edinburgh
millarj46
 
定制美国西雅图城市大学毕业证学历证书原版一模一样
定制美国西雅图城市大学毕业证学历证书原版一模一样定制美国西雅图城市大学毕业证学历证书原版一模一样
定制美国西雅图城市大学毕业证学历证书原版一模一样
qo1as76n
 
UNIT V ACTIONS AND COMMANDS, FORMS AND CONTROLS.pptx
UNIT V ACTIONS AND COMMANDS, FORMS AND CONTROLS.pptxUNIT V ACTIONS AND COMMANDS, FORMS AND CONTROLS.pptx
UNIT V ACTIONS AND COMMANDS, FORMS AND CONTROLS.pptx
GOWSIKRAJA PALANISAMY
 
Connect Conference 2022: Passive House - Economic and Environmental Solution...
Connect Conference 2022: Passive House -  Economic and Environmental Solution...Connect Conference 2022: Passive House -  Economic and Environmental Solution...
Connect Conference 2022: Passive House - Economic and Environmental Solution...
TE Studio
 
EASY TUTORIAL OF HOW TO USE CAPCUT BY: FEBLESS HERNANE
EASY TUTORIAL OF HOW TO USE CAPCUT BY: FEBLESS HERNANEEASY TUTORIAL OF HOW TO USE CAPCUT BY: FEBLESS HERNANE
EASY TUTORIAL OF HOW TO USE CAPCUT BY: FEBLESS HERNANE
Febless Hernane
 

Recently uploaded (20)

AHMED TALAAT ARCHITECTURE PORTFOLIO .pdf
AHMED TALAAT ARCHITECTURE PORTFOLIO .pdfAHMED TALAAT ARCHITECTURE PORTFOLIO .pdf
AHMED TALAAT ARCHITECTURE PORTFOLIO .pdf
 
Revolutionizing the Digital Landscape: Web Development Companies in India
Revolutionizing the Digital Landscape: Web Development Companies in IndiaRevolutionizing the Digital Landscape: Web Development Companies in India
Revolutionizing the Digital Landscape: Web Development Companies in India
 
Practical eLearning Makeovers for Everyone
Practical eLearning Makeovers for EveryonePractical eLearning Makeovers for Everyone
Practical eLearning Makeovers for Everyone
 
Storytelling For The Web: Integrate Storytelling in your Design Process
Storytelling For The Web: Integrate Storytelling in your Design ProcessStorytelling For The Web: Integrate Storytelling in your Design Process
Storytelling For The Web: Integrate Storytelling in your Design Process
 
一比一原版(LSBU毕业证书)伦敦南岸大学毕业证如何办理
一比一原版(LSBU毕业证书)伦敦南岸大学毕业证如何办理一比一原版(LSBU毕业证书)伦敦南岸大学毕业证如何办理
一比一原版(LSBU毕业证书)伦敦南岸大学毕业证如何办理
 
ZAPATILLAS 2 X 110 ABRIL.pdf compra economico
ZAPATILLAS 2 X 110 ABRIL.pdf compra economicoZAPATILLAS 2 X 110 ABRIL.pdf compra economico
ZAPATILLAS 2 X 110 ABRIL.pdf compra economico
 
ARENA - Young adults in the workplace (Knight Moves).pdf
ARENA - Young adults in the workplace (Knight Moves).pdfARENA - Young adults in the workplace (Knight Moves).pdf
ARENA - Young adults in the workplace (Knight Moves).pdf
 
Technoblade The Legacy of a Minecraft Legend.
Technoblade The Legacy of a Minecraft Legend.Technoblade The Legacy of a Minecraft Legend.
Technoblade The Legacy of a Minecraft Legend.
 
一比一原版(BU毕业证)波士顿大学毕业证如何办理
一比一原版(BU毕业证)波士顿大学毕业证如何办理一比一原版(BU毕业证)波士顿大学毕业证如何办理
一比一原版(BU毕业证)波士顿大学毕业证如何办理
 
NHR Engineers Portfolio 2023 2024 NISHANT RATHI
NHR Engineers Portfolio 2023 2024 NISHANT RATHINHR Engineers Portfolio 2023 2024 NISHANT RATHI
NHR Engineers Portfolio 2023 2024 NISHANT RATHI
 
Timeless Principles of Good Design
Timeless Principles of Good DesignTimeless Principles of Good Design
Timeless Principles of Good Design
 
Top Interior Designers in Bangalore.pdf1
Top Interior Designers in Bangalore.pdf1Top Interior Designers in Bangalore.pdf1
Top Interior Designers in Bangalore.pdf1
 
Heuristics Evaluation - How to Guide.pdf
Heuristics Evaluation - How to Guide.pdfHeuristics Evaluation - How to Guide.pdf
Heuristics Evaluation - How to Guide.pdf
 
PDF SubmissionDigital Marketing Institute in Noida
PDF SubmissionDigital Marketing Institute in NoidaPDF SubmissionDigital Marketing Institute in Noida
PDF SubmissionDigital Marketing Institute in Noida
 
Maximize Your Content with Beautiful Assets : Content & Asset for Landing Page
Maximize Your Content with Beautiful Assets : Content & Asset for Landing Page Maximize Your Content with Beautiful Assets : Content & Asset for Landing Page
Maximize Your Content with Beautiful Assets : Content & Asset for Landing Page
 
Virtual Tour Application Powerpoint for museum of edinburgh
Virtual Tour Application Powerpoint for museum of edinburghVirtual Tour Application Powerpoint for museum of edinburgh
Virtual Tour Application Powerpoint for museum of edinburgh
 
定制美国西雅图城市大学毕业证学历证书原版一模一样
定制美国西雅图城市大学毕业证学历证书原版一模一样定制美国西雅图城市大学毕业证学历证书原版一模一样
定制美国西雅图城市大学毕业证学历证书原版一模一样
 
UNIT V ACTIONS AND COMMANDS, FORMS AND CONTROLS.pptx
UNIT V ACTIONS AND COMMANDS, FORMS AND CONTROLS.pptxUNIT V ACTIONS AND COMMANDS, FORMS AND CONTROLS.pptx
UNIT V ACTIONS AND COMMANDS, FORMS AND CONTROLS.pptx
 
Connect Conference 2022: Passive House - Economic and Environmental Solution...
Connect Conference 2022: Passive House -  Economic and Environmental Solution...Connect Conference 2022: Passive House -  Economic and Environmental Solution...
Connect Conference 2022: Passive House - Economic and Environmental Solution...
 
EASY TUTORIAL OF HOW TO USE CAPCUT BY: FEBLESS HERNANE
EASY TUTORIAL OF HOW TO USE CAPCUT BY: FEBLESS HERNANEEASY TUTORIAL OF HOW TO USE CAPCUT BY: FEBLESS HERNANE
EASY TUTORIAL OF HOW TO USE CAPCUT BY: FEBLESS HERNANE
 

Operating System Overview.

  • 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