Presented By: Asst. Prof. Navjeet Kaur Computer Department Govt College Ropar.

Slides:



Advertisements
Similar presentations
Operating Systems Components of OS
Advertisements

Interactive lesson about operating system
?  Able to explain the 6 key functions of system software  Able to explain each using a suitable example  Identify three different system software.
COURSE: COMPUTER PLATFORMS
SLC/Ver1.0/OS CONCEPTS/Oct'991INTRODUCTION What is an Operating System? Operating Structure -System Components -OS Services -System Calls & Programs -System.
Operating System Structure
Silberschatz, Galvin and Gagne  Operating System Concepts Chapter 3: Operating-System Structures System Components Operating System Services.
Cs238 Lecture 3 Operating System Structures Dr. Alan R. Davis.
Common System Components
Os31 Chapter 3 Operating-System Structures. os32 Outlines System Components Operating System Services System Calls System Programs System Structure Virtual.
Silberschatz, Galvin and Gagne  Operating System Concepts Common System Components Process Management Main Memory Management File Management.
Chapter 6: An Introduction to System Software and Virtual Machines
BY: SACHIN SHRIVASTAVA Operating System By : Sachin Shrivastava 1.
 Introduction Introduction  Definition of Operating System Definition of Operating System  Abstract View of OperatingSystem Abstract View of OperatingSystem.
Ajmer Singh PGT(IP) Software Concepts. Ajmer Singh PGT(IP) Operating System It is a program which acts as an interface between a user and hardware.
Introduction to Operating System and Operating System Components
CHAPTER 2 OPERATING SYSTEM OVERVIEW 1. Operating System Operating System Definition A program that controls the execution of application programs and.
 What is an operating system? What is an operating system?  Where does the OS fit in? Where does the OS fit in?  Services provided by an OS Services.
Chapter 3: Operating-System Structures System Components Operating System Services System Calls System Programs System Structure Virtual Machines System.
UNIX and Shell Programming (06CS36)
B.Ramamurthy9/19/20151 Operating Systems u Bina Ramamurthy CS421.
OS provide a user-friendly environment and manage resources of the computer system. Operating systems manage: –Processes –Memory –Storage –I/O subsystem.
INVITATION TO COMPUTER SCIENCE, JAVA VERSION, THIRD EDITION Chapter 6: An Introduction to System Software and Virtual Machines.
Silberschatz, Galvin and Gagne  Operating System Concepts Chapter 3: Operating-System Structures System Components Operating System Services.
Silberschatz and Galvin  Operating System Concepts Module 3: Operating-System Structures System Components Operating System Services System Calls.
CE Operating Systems Lecture 3 Overview of OS functions and structure.
Operating System What is an Operating System? A program that acts as an intermediary between a user of a computer and the computer hardware. An operating.
Silberschatz, Galvin and Gagne  Operating System Concepts Chapter 3: Operating-System Structures System Components Operating System Services.
3.1 Operating System Chapter 3: Operating-System Structures System Components Operating System Services System Calls System Programs System Structure Virtual.
OSes: 3. OS Structs 1 Operating Systems v Objectives –summarise OSes from several perspectives Certificate Program in Software Development CSE-TC and CSIM,
Distributed System Concepts and Architectures 2.3 Services Fall 2011 Student: Fan Bai
OS, , Part I Operating - System Structures Department of Computer Engineering, PSUWannarat Suntiamorntut.
1 CSE Department MAITSandeep Tayal Operating-System Structures System Components Operating System Services System Calls System Programs System Structure.
Operating System Principles And Multitasking
UNIX and Shell Programming
Distributed System Services Fall 2008 Siva Josyula
1 CS.217 Operating System By Ajarn..Sutapart Sappajak,METC,MSIT Chapter 3 Operating-System Structures Slide 1 Chapter 3 Operating-System Structures.
Overview of Operating Systems Introduction to Operating Systems: Module 0.
CPSC 171 Introduction to Computer Science System Software and Virtual Machines.
1 3 Computing System Fundamentals 3.3 Computer Systems.
Chapter 2. System Structures
Introduction to Operating Systems Prepared by: Dhason Operating Systems.
Ch 26 & 27 Operating Systems.  Understand the purpose of an operating system  Be able to describe the tasks performed by an operating system.
Silberschatz, Galvin, and Gagne  Applied Operating System Concepts Module 3: Operating-System Structures System Components Operating System Services.
Introduction to Operating System. 1.1 What is Operating System? An operating system is a program that manages the computer hardware. It also provides.
 PROCESS MANAGEMENT  A process is a program in execution: (A program is passive, a process active.)  A process has resources (CPU time, files) and.
First lecture.  Lecture note  ELearning web site :  Abraham Silberschatz, Peter B. Galvin, Greg Gagne, “Operating.
Operating System (Reference : OS[Silberschatz] + Norton 6e book slides)
The Functions of Operating Systems Network Operating Systems (NOS)
Cs506 First lecture. Materials Lecture note ELearning web site : Main text book : “Operating System Concepts”, 8 th edition,Auther:
System Components Operating System Services System Calls.
Operating System Structure Lecture: - Operating System Concepts Lecturer: - Pooja Sharma Computer Science Department, Punjabi University, Patiala.
1.3 Operating system services An operating system provide services to programs and to the users of the program. It provides an environment for the execution.
Module 3: Operating-System Structures
Operating System Structure
Introduction to Operating System (OS)
Cs506 First lecture.
OPERATING SYSTEM OVERVIEW
Chapter 3: Operating-System Structures
Unit 1: Introduction to Operating System
Functions of an operating system
Chapter 2: Operating-System Structures
Operating Systems Tasks 17/02/2019.
Introduction to Operating Systems
Operating System Introduction.
Operating Systems Tasks 04/04/2019.
TOPIC: HARDWARE AND SOFTWARE
Chapter 2: Operating-System Structures
Operating Systems Tasks 05/08/2019.
III. Operating System Structures
Presentation transcript:

Presented By: Asst. Prof. Navjeet Kaur Computer Department Govt College Ropar

 A program that acts as an intermediary between a user of a computer and the computer hardware

 To hide details of hardware by creating abstraction  To allocate resources to processes  Provide a pleasant and effective user interface

 Memory Management  Processor Management  Device Management  File Management  Security  Control over system performance  Job accounting  Error detecting aids  Coordination between other software and users

It keeps the track of which parts of memory are being used, allocate/deallocate memory space as required, etc. Process Management Creation and deletion of user and system processes, deadlock handling, etc.

OS manages device communication via their respective drivers. File Management A file system is normally organized into directories for easy navigation and usage. These directories may contain files and other directions.

Deals with hardware specific drivers for devices, keeps it all hidden from the rest of the system File Management Creating/deleting files and directories, backup, etc

By means of password and similar other techniques, preventing unauthorized access to programs and data. C ONTROL OVER SYSTEM PERFORMANCE Recording delays between request for a service and response from the system.

Keeping track of time and resources used by various jobs and users E RROR DETECTING AIDS Production of dumps, traces, error messages and other debugging and error detecting aids.

Coordination and assignment of compilers, interpreters, assemblers and other software to the various users of the computer systems.

THANKS