Operating Systems-1-Introduction - Structure - Updated
Operating Systems-1-Introduction - Structure - Updated
Introduction
FBA
Course Outcome
● To understand the fundamental concepts of computer system organization and the
structure of operating systems.
● To explore various aspects of process management in operating system
● To know how different CPU scheduling algorithm works and their respective importance
● To develop practical knowledge on the concept of threads
● To inspect process synchronization mechanisms and deadlocks
● To be able to analyze the management of main and virtual memory
Marks Distribution
● Theory – 80%
○ Class participation – 5%
○ Quiz – 15%
○ Mid – 25%
○ Final – 35%
● Lab – 20%
Operating Systems
"Actual” Introduction
FBA
What is an Operating System?
A program that acts as an intermediary
between a user of a computer and the computer hardware.
USER Application
( a program or application or interface)
Operating System
( a system software )
Hardware
( processor, monitor, keyboard etc. )
System Software Vs Application Software
System Software:
Application Software:
● Bill Gates got lucky to sign the so-called “Deal of the Century” with IBM to design a new OS for
IBM machines
● The deal allowed Microsoft to add an OS with $50 per PC and IBM did not own copyright for
the OS
● This allowed Microsoft to start the their OS dominance on the PC domain
Timeline of OS
● Developed by Apple Computer, Inc for their new
product, the Macintosh home PC, The Macintosh 128K,
was released in 1984
● The use of GUI with mouse was not Steve Job’s idea,
the idea was taken during his visit in Xerox PARC (Palo
Aalto Research Center)
FBA
Components of a Computer System
Kernel
The one program running at all times.
● Kernel is the central module of an operating system
● Part of OS that loads first, and it remains in main memory.
● As small as possible
● Provide all the essential services required by other parts of the operating system and applications.
● Kernel code is usually loaded into a protected area of memory to prevent it from being overwritten.
Bootstrap Program
An initial program executed when a computer starts running.
FBA
Operating System Architecture
Single-Processor Systems:
● Such systems have two or more processors in close communication, sharing the computer bus and
sometimes the clock, memory, and peripheral devices.
A dual-core system
Operating System Architecture
Clustered Systems:
● Special kind of multiprocessor system which gathers together multiple CPUs. They are composed of
two or more individual systems- or nodes - joined together.
● Clustered computers share storage and are closely linked via a local-area network (LAN) or a faster
interconnect, such as InfiniBand
Operating System Structure
Multiprogramming:
FBA
Operating System Services
● OS provides an environment for the execution of programs.
● Specific services provided, differ from one operating system to another, but there are some
common classes
● Services are provided for the convenience of the programmer
Operating Systems
System Call,
System Program,
System Boot
FBA
System Call
● System calls provide an interface to the services made available by an operating system.
● These calls are generally available as routines.
● Routines are written in C or C++. Some low level tasks are written in assembly language.
● File management
● Status information
● File modification
● Programming-language support
● Program loading and execution
● Communications
● Background services
System Boot
● When power initialized on system, execution starts at a fixed memory location.
➔ Firmware ROM used to hold initial boot code
● Operating system must be made available to hardware so hardware can start it.
➔ Small piece of code – bootstrap loader, stored in ROM locates the kernel, loads it into memory,
and starts it
➔ Sometimes two-step process where boot block at fixed location loaded by ROM code, which
loads bootstrap loader from disk
● Common bootstrap loader, GRUB, allows selection of kernel from multiple disks, versions, kernel
options
FBA
OS Structure
Simple/Monolithic structure:
● Process Scheduling: A task that schedules processes of different states like ready,
waiting, and running
● Virtual Memory
THE END