Unit 1: Introduction to Operating System

Slides:



Advertisements
Similar presentations
Interactive lesson about operating system
Advertisements

COURSE: COMPUTER PLATFORMS
CMPT 300: Operating Systems I Dr. Mohamed Hefeeda
1 School of Computing Science Simon Fraser University CMPT 300: Operating Systems I Dr. Mohamed Hefeeda.
Introduction  What is an Operating System  What Operating Systems Do  How is it filling our life 1-1 Lecture 1.
Silberschatz, Galvin and Gagne  Operating System Concepts Common System Components Process Management Main Memory Management File Management.
Dr. José M. Reyes Álamo 1.  Course website  Syllabus posted.
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.
Four Components of a Computer System. Computer System Components Users (people, machines, other computers) Applications programs – define the ways in.
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.
Silberschatz, Galvin and Gagne  2002 Modified for CSCI 399, Royden, Operating System Concepts Operating Systems Lecture 1 Introduction Read:
Fall 2000M.B. Ibáñez Lecture 01 Introduction What is an Operating System? The Evolution of Operating Systems Course Outline.
المحاضرة الاولى Operating Systems. The general objectives of this decision explain the concepts and the importance of operating systems and development.
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.
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.
INFORMATION SYSTEM-SOFTWARE Topic: OPERATING SYSTEM CONCEPTS.
Operating System Principles And Multitasking
UNIX and Shell Programming
Silberschatz, Galvin and Gagne  Operating System Concepts UNIT II Operating System Services.
Distributed System Services Fall 2008 Siva Josyula
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.
CS4315A. Berrached:CMS:UHD1 Introduction to Operating Systems Chapter 1.
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.
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.
Silberschatz, Galvin and Gagne ©2013 Operating System Concepts – 9 th Edit9on Chapter 1: Introduction.
CSC322 OPERATING SYSTEM Mr. Dilawar Lecturer, Department of Computer Science, Jahan University Kabul, Afghanistan.
Applied Operating System Concepts
Module 3: Operating-System Structures
Applied Operating System Concepts
2. OPERATING SYSTEM 2.1 Operating System Function
CS6401- OPERATING SYSTEMS L T P C
Chapter 1: Introduction
Operating System Structure
Introduction to Operating System (OS)
Chapter 1: Introduction
Chapter 1: Introduction
Chapter 1: Introduction
Chapter 1: Introduction
OPERATING SYSTEM OVERVIEW
Chapter 1: Introduction
חוברת שקפים להרצאות של ד"ר יאיר ויסמן מבוססת על אתר האינטרנט:
Chapter 1: Intro (excerpt)
What is an Operating System?
Chapter 2: System Structures
Chapter 3: Operating-System Structures
Operating System Concepts
Chapter 1: Introduction
Functions of an operating system
Introduction to Operating Systems
Introduction to Operating Systems
Chapter 2: Operating-System Structures
Introduction to Operating Systems
Chapter 1: Introduction
Chapter 1: Introduction
Operating Systems Tasks 04/04/2019.
Introduction to Operating Systems
Chapter 1: Introduction
Introduction to Operating Systems
Chapter 2: Operating-System Structures
Chapter 1: Introduction
Operating System Concepts
Operating Systems Tasks 05/08/2019.
Chapter 1: Introduction
Presentation transcript:

Unit 1: Introduction to Operating System Definition 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. OS is responsible for the management and coordination of activities and the sharing of the resources of the computer.

Goals of an Operating System:- Simplify the execution of user programs and make solving user problems easier. Use computer hardware efficiently. Allow sharing of hardware and software resources. Make application software portable and versatile. Provide security and protection among user programs. Improve overall system reliability.

Computer System Components :- Hardware Provides basic computing resources (CPU, memory, I/O devices). Operating System- Controls and coordinates the use of hardware among application programs. Application Programs- Solve computing problems of users (compilers, database systems, video games, business programs such as banking software). Users- People, machines, other computers

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 provides a fast storage that can be access directly by the CPU. The program to be executed, it must in the main memory. Operating System does the following activities for memory management. Keeps tracks of primary memory. ( i.e. what part of memory 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 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. Allocates the processor (CPU) to a process. De-allocates processor when processor is no longer required.

Device Management Keeps tracks of all devices. Operating System does the following activities for device management. Keeps tracks of all devices. 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. 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. Error detecting aids -- Production of dumps, traces, error messages and other debugging and error detecting aids. Coordination between other software and users -- Coordination and assignment of compilers, interpreters, assemblers and other software to the various users of the computer systems