OS Lesson1
OS Lesson1
INTRODUCTION TO OPERATING
SYSTEM (OS)
Slides Credits for all PPTs of OS course
Program execution
◦ loading in memory, I/O and file initialization.
System access
◦ resolves conflicts for resource contention.
◦ protection in access to resources and data.
Why are Operating Systems
Important?
Important to understand and know how to correctly use
when writing user applications.
Large and complex systems that have a high economic
impact and result in interesting problems of
management.
Few actually involved in OS design and implementation
but nevertheless many general techniques to be learned
and applied.
Combines concepts from many other areas of Computer
Science: Architecture, Languages,
Data Structures, Algorithms, etc.
Course Syllabus (1)
Concurrent Processes
◦ Process Models and Management
◦ Process Description and Control
◦ Task/Thread Description and Control
◦ Concurrency: Mutual Exclusion and
Synchronization
◦ Concurrency: Deadlock and Starvation
Course Syllabus (3)
Memory Management
◦ Real Memory Management
◦ Motivation for Virtual Memory (VM)
◦ Paging and Segmentation
◦ Page Fetch, Placement and Replacement
Course Syllabus (4)
Uniprocessor Scheduling
◦ Levels of CPU Scheduling
◦ Process Scheduling
External Storage Management
◦ File Systems/Management
◦ Directories
◦ File Allocation
◦ Disk Scheduling
Computer Hardware Organization
Computer System Components
1. Hardware – provides basic computing resources
(CPU, Memory, I/O devices, Communication).
2. Operating System – controls and coordinates
use of the hardware among various application
programs for various users.
3. System & Application Programs – ways in which the
system resources are used to solve computing
problems of the users (Word processors, Compilers,
Web browsers, Database systems, Video games).
4. Users – (People, Machines, other computers).
Hierarchical view of computer system
A. FRANK - P. WEISBERG
Static View of System
Components
Dynamic View of System
Components
Layers of a Computer System
End
User
Programmer
Application
Programs
Utilities Operating-
System
Operating-System Designer
Computer Hardware
What Operating Systems Do
Depends on the point of view.
Users want convenience, ease of use and good performance
◦ Don’t care about resource utilization.
But a shared computer such as mainframe or minicomputer must
keep all users happy.
Users of dedicate systems such as workstations have dedicated
resources but frequently use shared resources from servers.
Handheld computers are resource poor, optimized for usability
and battery life.
Some computers have little or no user interface, such as
embedded computers in devices and automobiles.
Views of an Operating System
Resource Manager:
◦ Manages and protects multiple computer resources: CPU,
Processes, Internal/External memory, Tasks, Applications,
Users, Communication channels, etc…
◦ Handles and allocates resources to multiple users or multiple
programs running at the same time and space (e.g., processor
time, memory, I/O devices).
◦ Decides between conflicting requests for efficient and fair
resource use (e.g., maximize throughput, minimize response
time).
Sort of a bottom-up view.
OS as a Resource Manager
2. Control Program
Control Program:
◦ Manages all the components of a complex
computer system in an integrated manner.
◦ Controls the execution of user programs and
I/O devices to prevent errors and improper use
of computer resources.
◦ Looks over and protects the computer:
Monitor, Supervisor, Executive, Controller,
Master, Coordinator ….
Sort of a black box view.
3. Command Executer
Command Executer:
◦ Interfaces between the users and machine.
◦ Supplies services/utilities to users.
◦ Provides the users with a convenient CLI
(Command Language Interface), also called a
Shell (in UNIX), for entering the user
commands.
Sort of a top-down view.
Modern view: Virtual Machine (1)
Is the Operating System just the Kernel (not the utilities and application
programs)?!
The Command Line Interface (CLI) (or command layer/interpreter or shell)
allows direct command entry by the user.
The shell used to be in the kernel but now is a (first between equals) utility
outside of it:
◦ Easy to change/debug
◦ Many of them (sh, bsh, csh, ksh, tcsh, wsh, bash)
◦ Possible to switch between them (chsh)
CLI is the User OS Interface
A. FRANK - P. WEISBERG
Main Bibliography
W. Stallings, “Operating
Systems: Internals
and Design
Principles”, 8th ed,
Pearson, 2015.
http://williamstallin
gs.com/OperatingSy
stems/
A. FRANK - P. WEISBERG
Main Bibliography
A. S. Tanenbaum,
“Modern Operating
Systems”, 4th ed,
Pearson, 2015.
http://www.pearsonhigh
ered.com/educator/acad
emic/product/0,,013600
6639,00%2ben-USS_01D
BC.html
A. FRANK - P. WEISBERG
Main Bibliography
T. W. Doeppner,
Operating Systems in
Depth, John Wiley &
Sons, 2011,
http://eu.wiley.com/
WileyCDA/WileyTitle/
productCd-EHEP0018
03.html
A. FRANK - P. WEISBERG