OPERATING SYSTEM OVERVIEW

Slides:



Advertisements
Similar presentations
COURSE: COMPUTER PLATFORMS
Advertisements

Common System Components
Silberschatz, Galvin and Gagne  Operating System Concepts Common System Components Process Management Main Memory Management File Management.
BY: SACHIN SHRIVASTAVA Operating System By : Sachin Shrivastava 1.
By Mr. Abdalla A. Shaame.  An operating system is a software component that acts as the core of a computer system.  It performs various functions and.
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.
Operating Systems.  Operating System Support Operating System Support  OS As User/Computer Interface OS As User/Computer Interface  OS As Resource.
CHAPTER 2 OPERATING SYSTEM OVERVIEW 1. Operating System Operating System Definition A program that controls the execution of application programs and.
Chapter 3: Operating-System Structures System Components Operating System Services System Calls System Programs System Structure Virtual Machines System.
UNIX and Shell Programming (06CS36)
Operating Systems.
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.
Distributed System Concepts and Architectures 2.3 Services Fall 2011 Student: Fan Bai
INFORMATION SYSTEM-SOFTWARE Topic: OPERATING SYSTEM CONCEPTS.
OS, , Part I Operating - System Structures Department of Computer Engineering, PSUWannarat Suntiamorntut.
Operating System Principles And Multitasking
UNIX and Shell Programming
Distributed System Services Fall 2008 Siva Josyula
UNIX Unit 1- Architecture of Unix - By Pratima.
CPSC 171 Introduction to Computer Science System Software and Virtual Machines.
Presented By: Asst. Prof. Navjeet Kaur Computer Department Govt College Ropar.
Introduction to Operating Systems Prepared by: Dhason Operating Systems.
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.
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.
CT101: Computing Systems Introduction to Operating Systems.
Chapter 2 Operating System Overview Dave Bremer Otago Polytechnic, N.Z. ©2008, Prentice Hall Operating Systems: Internals and Design Principles, 6/E William.
1 OPERATING SYSTEMS. 2 CONTENTS 1.What is an Operating System? 2.OS Functions 3.OS Services 4.Structure of OS 5.Evolution of OS.
Module 3: Operating-System Structures System Components Operating System Services System Calls System Programs System Structure Virtual Machines System.
Module 3: Operating-System Structures
Applied Operating System Concepts
2. OPERATING SYSTEM 2.1 Operating System Function
Credits: 3 CIE: 50 Marks SEE:100 Marks Lab: Embedded and IOT Lab
Operating System Interface between a user and the computer hardware
Operating System.
Chapter 2: System Structures
Operating Systems Introduction
Operating System Structure
THE OPERATION SYSTEM The need for an operating system
Introduction to Operating System (OS)
Operating System Architecture OS
Chapter 1: Intro (excerpt)
What is an Operating System?
Operating Systems Bina Ramamurthy CSE421 11/27/2018 B.Ramamurthy.
Chapter 3: Operating-System Structures
Operating Systems.
Unit 1: Introduction to Operating System
Basic Concepts Protection: Security:
Functions of an operating system
Operating Systems : Overview
Chapter 2: Operating-System Structures
Operating Systems Tasks 17/02/2019.
Introduction to Operating Systems
Operating Systems : Overview
Operating Systems : Overview
Operating Systems : Overview
Operating System Introduction.
Operating Systems Tasks 04/04/2019.
Operating Systems : Overview
Introduction to Operating Systems
Operating Systems : Overview
The Main Features of Operating Systems
Software - Operating Systems
Chapter 2 Operating System Overview
Introduction to Operating Systems
Chapter 2: Operating-System Structures
Operating Systems Tasks 05/08/2019.
Presentation transcript:

OPERATING SYSTEM OVERVIEW

What is an Operating System? An operating System OS is an intermediary between users and computer hardware. It provides users an environment in which a user can execute programs conveniently and efficiently. In technical terms, It is a software which manages hardware. An operating System controls the allocation of resources and services such as memory, processors, devices and information. An operating system is a program that acts as an interface between the user and the computer hardware and controls the execution of all kinds of programs.

What is an Operating System?

Following are some of important functions of an operating System Memory Management Processor Management Device Management File Management Security Control over system performance Job accounting Error detecting aids Coordination between other software and users

Memory Management Memory management refers to management of Primary Memory or Main Memory. Main memory is a large array of words or bytes where each word or byte has its own address. Main memory provides a fast storage that can be access directly by the CPU. So for a program to be executed, it must in the main memory.

Memory Management(Cont..) Operating System does the following activities for memory management. Keeps tracks of primary memory i.e. what part of it are in use by whom, what part are not in use. In multiprogramming, OS decides which process will get memory when and how much. Allocates the memory when the process requests it to do so. De-allocates the memory when the process no longer needs it or has been terminated.

Processor Management In multiprogramming environment, OS decides which process gets the processor when and how much time. This function is called process scheduling. Operating System does the following activities for processor management. Keeps tracks of processor and status of process. Program responsible for this task is known as traffic controller. Allocates the processor CPU to a process. De-allocates processor when processor is no longer required.

Device Management OS manages device communication via their respective drivers. Operating System does the following activities for device management. Keeps tracks of all devices. Program responsible for this task is known as the I/O controller. Decides which process gets the device when and for how much time. Allocates the device in the efficient way. De-allocates devices.

File Management A file system is normally organized into directories for easy navigation and usage. These directories may contain files and other directions. Operating System does the following activities for file management. Keeps track of information, location, uses, status etc. The collective facilities are often known as file system. Decides who gets the resources. Allocates the resources. De-allocates the resources.

Other Important Activities Following are some of the important activities that Operating System does. Security :- By means of password and similar other techniques, preventing unauthorized access to programs and data. Control over system performance :- Recording delays between request for a service and response from the system. Job accounting :- Keeping track of time and resources used by various jobs and users

Other Important Activities Error detecting aids:-Production of dumps, traces, error messages and other debugging and error detecting aids. Coordination between other softwares and users:-Coordination and assignment of compilers, interpreters, assemblers and other software to the various users of the computer systems.