SlideShare a Scribd company logo
How Operating System Works? 11/9/09 1 Operating Systems (GIT-ACT1)
Introduction The purpose of an operating system is to organize and control hardware and software so that the device it lives in behaves in a flexible but predictable way. 11/9/09 2 Operating Systems (GIT-ACT1)
What is an Operating System ? An operating system creates the ability to: serve a variety of purposes interact with users in more complicated ways keep up with needs that change over time All desktop computers have operating systems. 11/9/09 3 Operating Systems (GIT-ACT1)
Most Common Operating Systems Windows by Microsoft 11/9/09 4 Operating Systems (GIT-ACT1)
Macintosh by Apple 11/9/09 5 Operating Systems (GIT-ACT1)
UNIX 11/9/09 6 Operating Systems (GIT-ACT1)
Hundreds of other operating systems available for special-purpose applications, including specializations for mainframes, robotics, manufacturing, real-time control systems and so on. 11/9/09 7 Operating Systems (GIT-ACT1)
Operating System Functions It manages the hardware and software resources of the system. In a desktop computer, these resources include	 such things  as the processor,	memory,  disk space and more ( On a cellphone, they include the keypad, the screen, the address book, the phone dialer, the battery and the network connection.) 11/9/09 8 Operating Systems (GIT-ACT1)
It provides a stable, consistent way for applications to deal with the hardware without having to know all the details of the hardware. 11/9/09 9 Operating Systems (GIT-ACT1)
Types of Operating Systems Real-time operating system (RTOS) - Real-time operating systems are used to control machinery, scientific instruments and industrial systems. An RTOS typically has very little user-interface capability, and no end-user utilities, since the system will be a "sealed box" when delivered for use. A very important part of an RTOS is managing the resources of the computer so that a particular operation executes in precisely the same amount of time, every time it occurs. In a complex machine, having a part move more quickly just because system resources are available may be just as catastrophic as having it not move at all because the system is busy. 11/9/09 10 Operating Systems (GIT-ACT1)
Single-user, single task - As the name implies, this operating system is designed to manage the computer so that one user can effectively do one thing at a time. The Palm OS for Palm handheld computers is a good example of a modern single-user, single-task operating system. 11/9/09 11 Operating Systems (GIT-ACT1)
Single-user, multi-tasking - This is the type of operating system most people use on their desktop and laptop computers today. Microsoft's Windows and Apple's MacOS platforms are both examples of operating systems that will let a single user have several programs in operation at the same time. For example, it's entirely possible for a Windows user to be writing a note in a word processor while downloading a file from the Internet while printing the text of an e-mail message. 11/9/09 12 Operating Systems (GIT-ACT1)
Multi-user - A multi-user operating system allows many different users to take advantage of the computer's resources simultaneously. The operating system must make sure that the requirements of the various users are balanced, and that each of the programs they are using has sufficient and separate resources so that a problem with one user doesn't affect the entire community of users. Unix, VMS and mainframe operating systems, such as MVS, are examples of multi-user operating systems. 11/9/09 13 Operating Systems (GIT-ACT1)
Computer Operating Systems When you turn on the power to a computer, the first program that runs is usually a set of instructions kept in the computer's Read Only Memory (ROM). This code examines the system hardware to make sure everything is functioning properly. This power-on self test (POST) checks the CPU, the memory and basic input-output system ( BIOS) for errors and stores the result in a special memory location. Once the POST has successfully completed, the software loaded in ROM (sometimes called the BIOS or firmware) will begin to activate the computer's disk drives. 11/9/09 14 Operating Systems (GIT-ACT1)
The bootstrap loader is a small program that has a single function: It loads the operating system into memory and allows it to begin operation. In the most basic form, the bootstrap loader sets up the small driver programs that interface with and control the various hardware subsystems of the computer. It sets up the divisions of memory that hold the operating system, user information and applications. It establishes the data structures that will hold the myriad signals, flags and semaphores that are used to communicate within and between the subsystems and applications of the computer. Then it turns control of the computer over to the operating system. 11/9/09 15 Operating Systems (GIT-ACT1)
The operating system's tasks, in the most general sense, fall into six categories: Processor management Memory management Device management Storage management Application interface User interface 11/9/09 16 Operating Systems (GIT-ACT1)
Processor Management The heart of managing the processor comes down to two related issues: Ensuring that each process and application receives enough of the processor's time to function properly Using as many processor cycles as possible for real work 11/9/09 17 Operating Systems (GIT-ACT1)
The basic unit of software that the operating system deals with in scheduling the work done by the processor is either a process or a thread, depending on the operating system. A process, then, is software that performs some action and can be controlled -- by a user, by other applications or by the operating system. It is processes, rather than applications, that the operating system controls and schedules for execution by the CPU. In a single-tasking system, the schedule is straightforward. The operating system allows the application to begin running, suspending the execution only long enough to deal with interrupts and user input. 11/9/09 Operating Systems (GIT-ACT1) 18
Interrupts are special signals sent by hardware or software to the CPU 11/9/09 Operating Systems (GIT-ACT1) 19
In order to give the appearance of lots of things happening at the same time, the operating system has to switch between different processes thousands of times a second. Here's how it happens: A process occupies a certain amount of RAM. It also makes use of registers, stacks and queues within the CPU and operating-system memory space. When two processes are multi-tasking, the operating system allots a certain number of CPU execution cycles to one program. After that number of cycles, the operating system makes copies of all the registers, stacks and queues used by the processes, and notes the point at which the process paused in its execution. It then loads all the registers, stacks and queues used by the second process and allows it a certain number of CPU cycles. When those are complete, it makes copies of all the registers, stacks and queues used by the second program, and loads the first program. http://computer.howstuffworks.com/operating-system5.htm 11/9/09 Operating Systems (GIT-ACT1) 20
Process Control Block All of the information needed to keep track of a process when switching is kept in a data package called a process control block. The process control block typically contains: An ID number that identifies the process Pointers to the locations in the program and its data where processing last occurred  Register contents  States of various flags and switches Pointers to the upper and lower bounds of the memory required for the process A list of files opened by the process The priority of the process The status of all I/O devices needed by the process 11/9/09 Operating Systems (GIT-ACT1) 21

More Related Content

What's hot

Introduction to Operating Systems
Introduction to Operating SystemsIntroduction to Operating Systems
Introduction to Operating Systems
Mukesh Chinta
 
Operating system overview concepts ppt
Operating system overview concepts pptOperating system overview concepts ppt
Operating system overview concepts ppt
RajendraPrasad Alladi
 
Introduction to Computers
Introduction to ComputersIntroduction to Computers
Introduction to Computers
RIAH ENCARNACION
 
Introduction to Basic Computer Concepts Presentation
Introduction to Basic Computer Concepts PresentationIntroduction to Basic Computer Concepts Presentation
Introduction to Basic Computer Concepts Presentation
Ana Tan
 
Programming Languages An Intro
Programming Languages An IntroProgramming Languages An Intro
Programming Languages An Intro
Kimberly De Guzman
 
Operating Systems
Operating SystemsOperating Systems
Operating Systems
vampugani
 
Context switching
Context switchingContext switching
Context switching
DarakhshanNayyab
 
OS Structure
OS StructureOS Structure
OS Structure
Ajay Singh Rana
 
Functional units
Functional unitsFunctional units
Functional units
Jeeva Nanthini
 
Operating Systems
Operating SystemsOperating Systems
Operating Systems
Mohamed Loey
 
Interrupts
InterruptsInterrupts
Interrupts
Albin Panakkal
 
introduction To Operating System
introduction To Operating Systemintroduction To Operating System
introduction To Operating System
Luka M G
 
Operating System-Introduction
Operating System-IntroductionOperating System-Introduction
Operating System-Introduction
Shipra Swati
 
Real Time Systems
Real Time SystemsReal Time Systems
Real Time Systems
leo3004
 
Computer Software and Operating System
Computer Software and Operating SystemComputer Software and Operating System
Computer Software and Operating System
Rupan Sharma
 
Operating system structures
Operating system structuresOperating system structures
Operating system structures
Mohd Arif
 
introduction to programming languages
introduction to programming languagesintroduction to programming languages
introduction to programming languages
NaqashAhmad14
 
Process in operating system
Process in operating systemProcess in operating system
Process in operating system
Chetan Mahawar
 
History of operating systems
History of operating systemsHistory of operating systems
History of operating systems
Afrasiyab Haider
 
Presentation on computer software
Presentation on computer softwarePresentation on computer software
Presentation on computer software
Daffodil International University
 

What's hot (20)

Introduction to Operating Systems
Introduction to Operating SystemsIntroduction to Operating Systems
Introduction to Operating Systems
 
Operating system overview concepts ppt
Operating system overview concepts pptOperating system overview concepts ppt
Operating system overview concepts ppt
 
Introduction to Computers
Introduction to ComputersIntroduction to Computers
Introduction to Computers
 
Introduction to Basic Computer Concepts Presentation
Introduction to Basic Computer Concepts PresentationIntroduction to Basic Computer Concepts Presentation
Introduction to Basic Computer Concepts Presentation
 
Programming Languages An Intro
Programming Languages An IntroProgramming Languages An Intro
Programming Languages An Intro
 
Operating Systems
Operating SystemsOperating Systems
Operating Systems
 
Context switching
Context switchingContext switching
Context switching
 
OS Structure
OS StructureOS Structure
OS Structure
 
Functional units
Functional unitsFunctional units
Functional units
 
Operating Systems
Operating SystemsOperating Systems
Operating Systems
 
Interrupts
InterruptsInterrupts
Interrupts
 
introduction To Operating System
introduction To Operating Systemintroduction To Operating System
introduction To Operating System
 
Operating System-Introduction
Operating System-IntroductionOperating System-Introduction
Operating System-Introduction
 
Real Time Systems
Real Time SystemsReal Time Systems
Real Time Systems
 
Computer Software and Operating System
Computer Software and Operating SystemComputer Software and Operating System
Computer Software and Operating System
 
Operating system structures
Operating system structuresOperating system structures
Operating system structures
 
introduction to programming languages
introduction to programming languagesintroduction to programming languages
introduction to programming languages
 
Process in operating system
Process in operating systemProcess in operating system
Process in operating system
 
History of operating systems
History of operating systemsHistory of operating systems
History of operating systems
 
Presentation on computer software
Presentation on computer softwarePresentation on computer software
Presentation on computer software
 

Viewers also liked

Linux Operating system : Thrashing and Remedy
Linux Operating system : Thrashing and Remedy Linux Operating system : Thrashing and Remedy
Linux Operating system : Thrashing and Remedy
Ahsen Saeed
 
Chapter 09 Operating Systems
Chapter 09 Operating SystemsChapter 09 Operating Systems
Chapter 09 Operating Systems
xtin101
 
The purpose of operating systems
The purpose of operating systemsThe purpose of operating systems
The purpose of operating systems
93DragonNinja
 
Nucleation & crystallization
Nucleation & crystallizationNucleation & crystallization
Nucleation & crystallization
Gulfam Hussain
 
The purpose of an operating system
The purpose of an operating systemThe purpose of an operating system
The purpose of an operating system
11southongeorgeb
 
OSCh10
OSCh10OSCh10
Insitu matallography
Insitu matallographyInsitu matallography
Insitu matallography
SEVUGARAJAN KARUPPAIAH, BE,MS.
 
Basic metallurgy
Basic metallurgyBasic metallurgy
Virtual memory
Virtual memoryVirtual memory
Virtual memory
rapunzel08
 
Lec11 semaphores
Lec11 semaphoresLec11 semaphores
Lec11 semaphores
anandammca
 
Sex and Internet Pornography Addiction
Sex and Internet Pornography AddictionSex and Internet Pornography Addiction
Toefl tactics reading module
Toefl tactics reading moduleToefl tactics reading module
Toefl tactics reading module
Fella Boudjema
 
Computer basics
Computer basicsComputer basics
Computer basics
Matthew Kovar
 
Vocabulary module 2 - CHORES AND LEISURE
Vocabulary module 2 - CHORES AND LEISUREVocabulary module 2 - CHORES AND LEISURE
Vocabulary module 2 - CHORES AND LEISURE
Betzy Orenos
 
Housework
HouseworkHousework
6. vocabulary and note taking
6. vocabulary and note taking6. vocabulary and note taking
6. vocabulary and note taking
IECP
 
Introduction to Computers
Introduction to ComputersIntroduction to Computers
Introduction to Computers
Richmond Public Library
 
Lesiure time
Lesiure timeLesiure time
Lesiure time
Madhu Tandon
 
200631033 B Power Point
200631033 B Power Point200631033 B Power Point
200631033 B Power Point
mediaict4teaching
 
Powerpoint 200631031 B
Powerpoint 200631031 BPowerpoint 200631031 B
Powerpoint 200631031 B
mediaict4teaching
 

Viewers also liked (20)

Linux Operating system : Thrashing and Remedy
Linux Operating system : Thrashing and Remedy Linux Operating system : Thrashing and Remedy
Linux Operating system : Thrashing and Remedy
 
Chapter 09 Operating Systems
Chapter 09 Operating SystemsChapter 09 Operating Systems
Chapter 09 Operating Systems
 
The purpose of operating systems
The purpose of operating systemsThe purpose of operating systems
The purpose of operating systems
 
Nucleation & crystallization
Nucleation & crystallizationNucleation & crystallization
Nucleation & crystallization
 
The purpose of an operating system
The purpose of an operating systemThe purpose of an operating system
The purpose of an operating system
 
OSCh10
OSCh10OSCh10
OSCh10
 
Insitu matallography
Insitu matallographyInsitu matallography
Insitu matallography
 
Basic metallurgy
Basic metallurgyBasic metallurgy
Basic metallurgy
 
Virtual memory
Virtual memoryVirtual memory
Virtual memory
 
Lec11 semaphores
Lec11 semaphoresLec11 semaphores
Lec11 semaphores
 
Sex and Internet Pornography Addiction
Sex and Internet Pornography AddictionSex and Internet Pornography Addiction
Sex and Internet Pornography Addiction
 
Toefl tactics reading module
Toefl tactics reading moduleToefl tactics reading module
Toefl tactics reading module
 
Computer basics
Computer basicsComputer basics
Computer basics
 
Vocabulary module 2 - CHORES AND LEISURE
Vocabulary module 2 - CHORES AND LEISUREVocabulary module 2 - CHORES AND LEISURE
Vocabulary module 2 - CHORES AND LEISURE
 
Housework
HouseworkHousework
Housework
 
6. vocabulary and note taking
6. vocabulary and note taking6. vocabulary and note taking
6. vocabulary and note taking
 
Introduction to Computers
Introduction to ComputersIntroduction to Computers
Introduction to Computers
 
Lesiure time
Lesiure timeLesiure time
Lesiure time
 
200631033 B Power Point
200631033 B Power Point200631033 B Power Point
200631033 B Power Point
 
Powerpoint 200631031 B
Powerpoint 200631031 BPowerpoint 200631031 B
Powerpoint 200631031 B
 

Similar to How Operating System Works

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
 
ch1-introduction-to-os.ppt
ch1-introduction-to-os.pptch1-introduction-to-os.ppt
ch1-introduction-to-os.ppt
JohnColaco1
 
Intermediate Operating Systems
Intermediate Operating SystemsIntermediate Operating Systems
Intermediate Operating Systems
John Cutajar
 
Modern operating system.......
Modern operating system.......Modern operating system.......
Modern operating system.......
vignesh0009
 
Chapter 1 Introduction.pptx
Chapter 1 Introduction.pptxChapter 1 Introduction.pptx
Chapter 1 Introduction.pptx
AbdiAzizMaashaa1
 
What is an operating system
What is an operating systemWhat is an operating system
What is an operating system
What is an operating systemWhat is an operating system
209979479 study-material
209979479 study-material209979479 study-material
209979479 study-material
homeworkping8
 
OperatingSystem01..(B.SC Part 2)
OperatingSystem01..(B.SC Part 2)OperatingSystem01..(B.SC Part 2)
OperatingSystem01..(B.SC Part 2)
Muhammad Osama
 
MYSQL DATABASE Operating System Part2 (1).pptx
MYSQL DATABASE Operating System Part2 (1).pptxMYSQL DATABASE Operating System Part2 (1).pptx
MYSQL DATABASE Operating System Part2 (1).pptx
ArjayBalberan1
 
ch1.ppt
ch1.pptch1.ppt
Operating system 2
Operating system 2Operating system 2
Operating system 2
matsapit
 
LM1 - Computer System Overview, system calls
LM1 - Computer System Overview, system callsLM1 - Computer System Overview, system calls
LM1 - Computer System Overview, system calls
manideepakc
 
ch01.ppt
ch01.pptch01.ppt
ITFT _ Operating system
ITFT _ Operating systemITFT _ Operating system
ITFT _ Operating system
Navneet Kaur
 
Operating System
Operating SystemOperating System
Operating System
naughty9
 
Operating system
Operating systemOperating system
ITT project ON types of operating system
ITT project ON types of operating systemITT project ON types of operating system
ITT project ON types of operating system
Jiohj Etzs
 
ch1-introduction-to-os operating system .ppt
ch1-introduction-to-os operating system .pptch1-introduction-to-os operating system .ppt
ch1-introduction-to-os operating system .ppt
tanwarbhavya7
 
Operating system presentation
Operating system presentationOperating system presentation
Operating system presentation
Sonu Vishwakarma
 

Similar to How Operating System Works (20)

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
 
ch1-introduction-to-os.ppt
ch1-introduction-to-os.pptch1-introduction-to-os.ppt
ch1-introduction-to-os.ppt
 
Intermediate Operating Systems
Intermediate Operating SystemsIntermediate Operating Systems
Intermediate Operating Systems
 
Modern operating system.......
Modern operating system.......Modern operating system.......
Modern operating system.......
 
Chapter 1 Introduction.pptx
Chapter 1 Introduction.pptxChapter 1 Introduction.pptx
Chapter 1 Introduction.pptx
 
What is an operating system
What is an operating systemWhat is an operating system
What is an operating system
 
What is an operating system
What is an operating systemWhat is an operating system
What is an operating system
 
209979479 study-material
209979479 study-material209979479 study-material
209979479 study-material
 
OperatingSystem01..(B.SC Part 2)
OperatingSystem01..(B.SC Part 2)OperatingSystem01..(B.SC Part 2)
OperatingSystem01..(B.SC Part 2)
 
MYSQL DATABASE Operating System Part2 (1).pptx
MYSQL DATABASE Operating System Part2 (1).pptxMYSQL DATABASE Operating System Part2 (1).pptx
MYSQL DATABASE Operating System Part2 (1).pptx
 
ch1.ppt
ch1.pptch1.ppt
ch1.ppt
 
Operating system 2
Operating system 2Operating system 2
Operating system 2
 
LM1 - Computer System Overview, system calls
LM1 - Computer System Overview, system callsLM1 - Computer System Overview, system calls
LM1 - Computer System Overview, system calls
 
ch01.ppt
ch01.pptch01.ppt
ch01.ppt
 
ITFT _ Operating system
ITFT _ Operating systemITFT _ Operating system
ITFT _ Operating system
 
Operating System
Operating SystemOperating System
Operating System
 
Operating system
Operating systemOperating system
Operating system
 
ITT project ON types of operating system
ITT project ON types of operating systemITT project ON types of operating system
ITT project ON types of operating system
 
ch1-introduction-to-os operating system .ppt
ch1-introduction-to-os operating system .pptch1-introduction-to-os operating system .ppt
ch1-introduction-to-os operating system .ppt
 
Operating system presentation
Operating system presentationOperating system presentation
Operating system presentation
 

More from guevarra_2000

School personnel sheet2
School personnel sheet2School personnel sheet2
School personnel sheet2
guevarra_2000
 
Ting's report on training of spa
Ting's report on training of spaTing's report on training of spa
Ting's report on training of spa
guevarra_2000
 
Personnel admin
Personnel adminPersonnel admin
Personnel admin
guevarra_2000
 
Personnel administration
Personnel administrationPersonnel administration
Personnel administration
guevarra_2000
 
Supervisor's role
Supervisor's roleSupervisor's role
Supervisor's role
guevarra_2000
 
Filipino values and culture
Filipino values and cultureFilipino values and culture
Filipino values and culture
guevarra_2000
 
Format for the action research project
Format for the action research projectFormat for the action research project
Format for the action research project
guevarra_2000
 
Course outline
Course outlineCourse outline
Course outline
guevarra_2000
 
Course outline
Course outlineCourse outline
Course outline
guevarra_2000
 
Action research format
Action research formatAction research format
Action research format
guevarra_2000
 
Recruitment
RecruitmentRecruitment
Recruitment
guevarra_2000
 
Recruitmentcompatible 1222798911739370-9
Recruitmentcompatible 1222798911739370-9Recruitmentcompatible 1222798911739370-9
Recruitmentcompatible 1222798911739370-9
guevarra_2000
 
Filipino culture report
Filipino culture reportFilipino culture report
Filipino culture report
guevarra_2000
 
Personnel administration report
Personnel administration reportPersonnel administration report
Personnel administration report
guevarra_2000
 
Leader&cultural diversity
Leader&cultural diversityLeader&cultural diversity
Leader&cultural diversity
guevarra_2000
 
Leader&cultural diversity
Leader&cultural diversityLeader&cultural diversity
Leader&cultural diversity
guevarra_2000
 
Edleadership
EdleadershipEdleadership
Edleadership
guevarra_2000
 
Principles of getting job done
Principles of getting job donePrinciples of getting job done
Principles of getting job done
guevarra_2000
 
Leading different personalities
Leading different personalitiesLeading different personalities
Leading different personalities
guevarra_2000
 
Success2012
Success2012Success2012
Success2012
guevarra_2000
 

More from guevarra_2000 (20)

School personnel sheet2
School personnel sheet2School personnel sheet2
School personnel sheet2
 
Ting's report on training of spa
Ting's report on training of spaTing's report on training of spa
Ting's report on training of spa
 
Personnel admin
Personnel adminPersonnel admin
Personnel admin
 
Personnel administration
Personnel administrationPersonnel administration
Personnel administration
 
Supervisor's role
Supervisor's roleSupervisor's role
Supervisor's role
 
Filipino values and culture
Filipino values and cultureFilipino values and culture
Filipino values and culture
 
Format for the action research project
Format for the action research projectFormat for the action research project
Format for the action research project
 
Course outline
Course outlineCourse outline
Course outline
 
Course outline
Course outlineCourse outline
Course outline
 
Action research format
Action research formatAction research format
Action research format
 
Recruitment
RecruitmentRecruitment
Recruitment
 
Recruitmentcompatible 1222798911739370-9
Recruitmentcompatible 1222798911739370-9Recruitmentcompatible 1222798911739370-9
Recruitmentcompatible 1222798911739370-9
 
Filipino culture report
Filipino culture reportFilipino culture report
Filipino culture report
 
Personnel administration report
Personnel administration reportPersonnel administration report
Personnel administration report
 
Leader&cultural diversity
Leader&cultural diversityLeader&cultural diversity
Leader&cultural diversity
 
Leader&cultural diversity
Leader&cultural diversityLeader&cultural diversity
Leader&cultural diversity
 
Edleadership
EdleadershipEdleadership
Edleadership
 
Principles of getting job done
Principles of getting job donePrinciples of getting job done
Principles of getting job done
 
Leading different personalities
Leading different personalitiesLeading different personalities
Leading different personalities
 
Success2012
Success2012Success2012
Success2012
 

Recently uploaded

Lee Barnes - Path to Becoming an Effective Test Automation Engineer.pdf
Lee Barnes - Path to Becoming an Effective Test Automation Engineer.pdfLee Barnes - Path to Becoming an Effective Test Automation Engineer.pdf
Lee Barnes - Path to Becoming an Effective Test Automation Engineer.pdf
leebarnesutopia
 
JavaLand 2024: Application Development Green Masterplan
JavaLand 2024: Application Development Green MasterplanJavaLand 2024: Application Development Green Masterplan
JavaLand 2024: Application Development Green Masterplan
Miro Wengner
 
AI in the Workplace Reskilling, Upskilling, and Future Work.pptx
AI in the Workplace Reskilling, Upskilling, and Future Work.pptxAI in the Workplace Reskilling, Upskilling, and Future Work.pptx
AI in the Workplace Reskilling, Upskilling, and Future Work.pptx
Sunil Jagani
 
The Microsoft 365 Migration Tutorial For Beginner.pptx
The Microsoft 365 Migration Tutorial For Beginner.pptxThe Microsoft 365 Migration Tutorial For Beginner.pptx
The Microsoft 365 Migration Tutorial For Beginner.pptx
operationspcvita
 
Mutation Testing for Task-Oriented Chatbots
Mutation Testing for Task-Oriented ChatbotsMutation Testing for Task-Oriented Chatbots
Mutation Testing for Task-Oriented Chatbots
Pablo Gómez Abajo
 
Y-Combinator seed pitch deck template PP
Y-Combinator seed pitch deck template PPY-Combinator seed pitch deck template PP
Y-Combinator seed pitch deck template PP
c5vrf27qcz
 
Essentials of Automations: Exploring Attributes & Automation Parameters
Essentials of Automations: Exploring Attributes & Automation ParametersEssentials of Automations: Exploring Attributes & Automation Parameters
Essentials of Automations: Exploring Attributes & Automation Parameters
Safe Software
 
Dandelion Hashtable: beyond billion requests per second on a commodity server
Dandelion Hashtable: beyond billion requests per second on a commodity serverDandelion Hashtable: beyond billion requests per second on a commodity server
Dandelion Hashtable: beyond billion requests per second on a commodity server
Antonios Katsarakis
 
Demystifying Knowledge Management through Storytelling
Demystifying Knowledge Management through StorytellingDemystifying Knowledge Management through Storytelling
Demystifying Knowledge Management through Storytelling
Enterprise Knowledge
 
Introducing BoxLang : A new JVM language for productivity and modularity!
Introducing BoxLang : A new JVM language for productivity and modularity!Introducing BoxLang : A new JVM language for productivity and modularity!
Introducing BoxLang : A new JVM language for productivity and modularity!
Ortus Solutions, Corp
 
Containers & AI - Beauty and the Beast!?!
Containers & AI - Beauty and the Beast!?!Containers & AI - Beauty and the Beast!?!
Containers & AI - Beauty and the Beast!?!
Tobias Schneck
 
Call Girls Chandigarh🔥7023059433🔥Agency Profile Escorts in Chandigarh Availab...
Call Girls Chandigarh🔥7023059433🔥Agency Profile Escorts in Chandigarh Availab...Call Girls Chandigarh🔥7023059433🔥Agency Profile Escorts in Chandigarh Availab...
Call Girls Chandigarh🔥7023059433🔥Agency Profile Escorts in Chandigarh Availab...
manji sharman06
 
QR Secure: A Hybrid Approach Using Machine Learning and Security Validation F...
QR Secure: A Hybrid Approach Using Machine Learning and Security Validation F...QR Secure: A Hybrid Approach Using Machine Learning and Security Validation F...
QR Secure: A Hybrid Approach Using Machine Learning and Security Validation F...
AlexanderRichford
 
What is an RPA CoE? Session 2 – CoE Roles
What is an RPA CoE?  Session 2 – CoE RolesWhat is an RPA CoE?  Session 2 – CoE Roles
What is an RPA CoE? Session 2 – CoE Roles
DianaGray10
 
Day 2 - Intro to UiPath Studio Fundamentals
Day 2 - Intro to UiPath Studio FundamentalsDay 2 - Intro to UiPath Studio Fundamentals
Day 2 - Intro to UiPath Studio Fundamentals
UiPathCommunity
 
Harnessing the Power of NLP and Knowledge Graphs for Opioid Research
Harnessing the Power of NLP and Knowledge Graphs for Opioid ResearchHarnessing the Power of NLP and Knowledge Graphs for Opioid Research
Harnessing the Power of NLP and Knowledge Graphs for Opioid Research
Neo4j
 
Christine's Product Research Presentation.pptx
Christine's Product Research Presentation.pptxChristine's Product Research Presentation.pptx
Christine's Product Research Presentation.pptx
christinelarrosa
 
Northern Engraving | Modern Metal Trim, Nameplates and Appliance Panels
Northern Engraving | Modern Metal Trim, Nameplates and Appliance PanelsNorthern Engraving | Modern Metal Trim, Nameplates and Appliance Panels
Northern Engraving | Modern Metal Trim, Nameplates and Appliance Panels
Northern Engraving
 
QA or the Highway - Component Testing: Bridging the gap between frontend appl...
QA or the Highway - Component Testing: Bridging the gap between frontend appl...QA or the Highway - Component Testing: Bridging the gap between frontend appl...
QA or the Highway - Component Testing: Bridging the gap between frontend appl...
zjhamm304
 
"Frontline Battles with DDoS: Best practices and Lessons Learned", Igor Ivaniuk
"Frontline Battles with DDoS: Best practices and Lessons Learned",  Igor Ivaniuk"Frontline Battles with DDoS: Best practices and Lessons Learned",  Igor Ivaniuk
"Frontline Battles with DDoS: Best practices and Lessons Learned", Igor Ivaniuk
Fwdays
 

Recently uploaded (20)

Lee Barnes - Path to Becoming an Effective Test Automation Engineer.pdf
Lee Barnes - Path to Becoming an Effective Test Automation Engineer.pdfLee Barnes - Path to Becoming an Effective Test Automation Engineer.pdf
Lee Barnes - Path to Becoming an Effective Test Automation Engineer.pdf
 
JavaLand 2024: Application Development Green Masterplan
JavaLand 2024: Application Development Green MasterplanJavaLand 2024: Application Development Green Masterplan
JavaLand 2024: Application Development Green Masterplan
 
AI in the Workplace Reskilling, Upskilling, and Future Work.pptx
AI in the Workplace Reskilling, Upskilling, and Future Work.pptxAI in the Workplace Reskilling, Upskilling, and Future Work.pptx
AI in the Workplace Reskilling, Upskilling, and Future Work.pptx
 
The Microsoft 365 Migration Tutorial For Beginner.pptx
The Microsoft 365 Migration Tutorial For Beginner.pptxThe Microsoft 365 Migration Tutorial For Beginner.pptx
The Microsoft 365 Migration Tutorial For Beginner.pptx
 
Mutation Testing for Task-Oriented Chatbots
Mutation Testing for Task-Oriented ChatbotsMutation Testing for Task-Oriented Chatbots
Mutation Testing for Task-Oriented Chatbots
 
Y-Combinator seed pitch deck template PP
Y-Combinator seed pitch deck template PPY-Combinator seed pitch deck template PP
Y-Combinator seed pitch deck template PP
 
Essentials of Automations: Exploring Attributes & Automation Parameters
Essentials of Automations: Exploring Attributes & Automation ParametersEssentials of Automations: Exploring Attributes & Automation Parameters
Essentials of Automations: Exploring Attributes & Automation Parameters
 
Dandelion Hashtable: beyond billion requests per second on a commodity server
Dandelion Hashtable: beyond billion requests per second on a commodity serverDandelion Hashtable: beyond billion requests per second on a commodity server
Dandelion Hashtable: beyond billion requests per second on a commodity server
 
Demystifying Knowledge Management through Storytelling
Demystifying Knowledge Management through StorytellingDemystifying Knowledge Management through Storytelling
Demystifying Knowledge Management through Storytelling
 
Introducing BoxLang : A new JVM language for productivity and modularity!
Introducing BoxLang : A new JVM language for productivity and modularity!Introducing BoxLang : A new JVM language for productivity and modularity!
Introducing BoxLang : A new JVM language for productivity and modularity!
 
Containers & AI - Beauty and the Beast!?!
Containers & AI - Beauty and the Beast!?!Containers & AI - Beauty and the Beast!?!
Containers & AI - Beauty and the Beast!?!
 
Call Girls Chandigarh🔥7023059433🔥Agency Profile Escorts in Chandigarh Availab...
Call Girls Chandigarh🔥7023059433🔥Agency Profile Escorts in Chandigarh Availab...Call Girls Chandigarh🔥7023059433🔥Agency Profile Escorts in Chandigarh Availab...
Call Girls Chandigarh🔥7023059433🔥Agency Profile Escorts in Chandigarh Availab...
 
QR Secure: A Hybrid Approach Using Machine Learning and Security Validation F...
QR Secure: A Hybrid Approach Using Machine Learning and Security Validation F...QR Secure: A Hybrid Approach Using Machine Learning and Security Validation F...
QR Secure: A Hybrid Approach Using Machine Learning and Security Validation F...
 
What is an RPA CoE? Session 2 – CoE Roles
What is an RPA CoE?  Session 2 – CoE RolesWhat is an RPA CoE?  Session 2 – CoE Roles
What is an RPA CoE? Session 2 – CoE Roles
 
Day 2 - Intro to UiPath Studio Fundamentals
Day 2 - Intro to UiPath Studio FundamentalsDay 2 - Intro to UiPath Studio Fundamentals
Day 2 - Intro to UiPath Studio Fundamentals
 
Harnessing the Power of NLP and Knowledge Graphs for Opioid Research
Harnessing the Power of NLP and Knowledge Graphs for Opioid ResearchHarnessing the Power of NLP and Knowledge Graphs for Opioid Research
Harnessing the Power of NLP and Knowledge Graphs for Opioid Research
 
Christine's Product Research Presentation.pptx
Christine's Product Research Presentation.pptxChristine's Product Research Presentation.pptx
Christine's Product Research Presentation.pptx
 
Northern Engraving | Modern Metal Trim, Nameplates and Appliance Panels
Northern Engraving | Modern Metal Trim, Nameplates and Appliance PanelsNorthern Engraving | Modern Metal Trim, Nameplates and Appliance Panels
Northern Engraving | Modern Metal Trim, Nameplates and Appliance Panels
 
QA or the Highway - Component Testing: Bridging the gap between frontend appl...
QA or the Highway - Component Testing: Bridging the gap between frontend appl...QA or the Highway - Component Testing: Bridging the gap between frontend appl...
QA or the Highway - Component Testing: Bridging the gap between frontend appl...
 
"Frontline Battles with DDoS: Best practices and Lessons Learned", Igor Ivaniuk
"Frontline Battles with DDoS: Best practices and Lessons Learned",  Igor Ivaniuk"Frontline Battles with DDoS: Best practices and Lessons Learned",  Igor Ivaniuk
"Frontline Battles with DDoS: Best practices and Lessons Learned", Igor Ivaniuk
 

How Operating System Works

  • 1. How Operating System Works? 11/9/09 1 Operating Systems (GIT-ACT1)
  • 2. Introduction The purpose of an operating system is to organize and control hardware and software so that the device it lives in behaves in a flexible but predictable way. 11/9/09 2 Operating Systems (GIT-ACT1)
  • 3. What is an Operating System ? An operating system creates the ability to: serve a variety of purposes interact with users in more complicated ways keep up with needs that change over time All desktop computers have operating systems. 11/9/09 3 Operating Systems (GIT-ACT1)
  • 4. Most Common Operating Systems Windows by Microsoft 11/9/09 4 Operating Systems (GIT-ACT1)
  • 5. Macintosh by Apple 11/9/09 5 Operating Systems (GIT-ACT1)
  • 6. UNIX 11/9/09 6 Operating Systems (GIT-ACT1)
  • 7. Hundreds of other operating systems available for special-purpose applications, including specializations for mainframes, robotics, manufacturing, real-time control systems and so on. 11/9/09 7 Operating Systems (GIT-ACT1)
  • 8. Operating System Functions It manages the hardware and software resources of the system. In a desktop computer, these resources include such things as the processor, memory, disk space and more ( On a cellphone, they include the keypad, the screen, the address book, the phone dialer, the battery and the network connection.) 11/9/09 8 Operating Systems (GIT-ACT1)
  • 9. It provides a stable, consistent way for applications to deal with the hardware without having to know all the details of the hardware. 11/9/09 9 Operating Systems (GIT-ACT1)
  • 10. Types of Operating Systems Real-time operating system (RTOS) - Real-time operating systems are used to control machinery, scientific instruments and industrial systems. An RTOS typically has very little user-interface capability, and no end-user utilities, since the system will be a "sealed box" when delivered for use. A very important part of an RTOS is managing the resources of the computer so that a particular operation executes in precisely the same amount of time, every time it occurs. In a complex machine, having a part move more quickly just because system resources are available may be just as catastrophic as having it not move at all because the system is busy. 11/9/09 10 Operating Systems (GIT-ACT1)
  • 11. Single-user, single task - As the name implies, this operating system is designed to manage the computer so that one user can effectively do one thing at a time. The Palm OS for Palm handheld computers is a good example of a modern single-user, single-task operating system. 11/9/09 11 Operating Systems (GIT-ACT1)
  • 12. Single-user, multi-tasking - This is the type of operating system most people use on their desktop and laptop computers today. Microsoft's Windows and Apple's MacOS platforms are both examples of operating systems that will let a single user have several programs in operation at the same time. For example, it's entirely possible for a Windows user to be writing a note in a word processor while downloading a file from the Internet while printing the text of an e-mail message. 11/9/09 12 Operating Systems (GIT-ACT1)
  • 13. Multi-user - A multi-user operating system allows many different users to take advantage of the computer's resources simultaneously. The operating system must make sure that the requirements of the various users are balanced, and that each of the programs they are using has sufficient and separate resources so that a problem with one user doesn't affect the entire community of users. Unix, VMS and mainframe operating systems, such as MVS, are examples of multi-user operating systems. 11/9/09 13 Operating Systems (GIT-ACT1)
  • 14. Computer Operating Systems When you turn on the power to a computer, the first program that runs is usually a set of instructions kept in the computer's Read Only Memory (ROM). This code examines the system hardware to make sure everything is functioning properly. This power-on self test (POST) checks the CPU, the memory and basic input-output system ( BIOS) for errors and stores the result in a special memory location. Once the POST has successfully completed, the software loaded in ROM (sometimes called the BIOS or firmware) will begin to activate the computer's disk drives. 11/9/09 14 Operating Systems (GIT-ACT1)
  • 15. The bootstrap loader is a small program that has a single function: It loads the operating system into memory and allows it to begin operation. In the most basic form, the bootstrap loader sets up the small driver programs that interface with and control the various hardware subsystems of the computer. It sets up the divisions of memory that hold the operating system, user information and applications. It establishes the data structures that will hold the myriad signals, flags and semaphores that are used to communicate within and between the subsystems and applications of the computer. Then it turns control of the computer over to the operating system. 11/9/09 15 Operating Systems (GIT-ACT1)
  • 16. The operating system's tasks, in the most general sense, fall into six categories: Processor management Memory management Device management Storage management Application interface User interface 11/9/09 16 Operating Systems (GIT-ACT1)
  • 17. Processor Management The heart of managing the processor comes down to two related issues: Ensuring that each process and application receives enough of the processor's time to function properly Using as many processor cycles as possible for real work 11/9/09 17 Operating Systems (GIT-ACT1)
  • 18. The basic unit of software that the operating system deals with in scheduling the work done by the processor is either a process or a thread, depending on the operating system. A process, then, is software that performs some action and can be controlled -- by a user, by other applications or by the operating system. It is processes, rather than applications, that the operating system controls and schedules for execution by the CPU. In a single-tasking system, the schedule is straightforward. The operating system allows the application to begin running, suspending the execution only long enough to deal with interrupts and user input. 11/9/09 Operating Systems (GIT-ACT1) 18
  • 19. Interrupts are special signals sent by hardware or software to the CPU 11/9/09 Operating Systems (GIT-ACT1) 19
  • 20. In order to give the appearance of lots of things happening at the same time, the operating system has to switch between different processes thousands of times a second. Here's how it happens: A process occupies a certain amount of RAM. It also makes use of registers, stacks and queues within the CPU and operating-system memory space. When two processes are multi-tasking, the operating system allots a certain number of CPU execution cycles to one program. After that number of cycles, the operating system makes copies of all the registers, stacks and queues used by the processes, and notes the point at which the process paused in its execution. It then loads all the registers, stacks and queues used by the second process and allows it a certain number of CPU cycles. When those are complete, it makes copies of all the registers, stacks and queues used by the second program, and loads the first program. http://computer.howstuffworks.com/operating-system5.htm 11/9/09 Operating Systems (GIT-ACT1) 20
  • 21. Process Control Block All of the information needed to keep track of a process when switching is kept in a data package called a process control block. The process control block typically contains: An ID number that identifies the process Pointers to the locations in the program and its data where processing last occurred Register contents States of various flags and switches Pointers to the upper and lower bounds of the memory required for the process A list of files opened by the process The priority of the process The status of all I/O devices needed by the process 11/9/09 Operating Systems (GIT-ACT1) 21

Editor's Notes

  1. The first task, managing the hardware and software resources, is very important, as various programs and input methods compete for the attention of the central processing unit (CPU) and demand memory, storage and input/output (I/O) bandwidth for their own purposes. In this capacity, the operating system plays the role of the good parent, making sure that each application gets the necessary resources while playing nicely with all the other applications, as well as husbanding the limited capacity of the system to the greatest good of all the users and applications.
  2. The second task, providing a consistent application interface, is especially important if there is to be more than one of a particular type of computer using the operating system, or if the hardware making up the computer is ever open to change. A consistent application program interface (API) allows a software developer to write an application on one computer and have a high level of confidence that it will run on another computer of the same type, even if the amount of memory or the quantity of storage is different on the two machines.