Operating System
Operating System
Organization of a computer system Purpose of a computer systemsetting the stage for OS concepts and principles Outline of topics to be discussed in the course What is an operating system?
Computer System
1. 2. 3. 4.
Computer systems consist of software and hardware that are combined to provide a tool to solve specific problems in an efficient manner Execute programs
F lo atin gP o in t U n it C ach e P ro c e s s o r
C D
S y s te mB u s
H D
M em B u s
R A M /R O M
P rin ter
M o n ito r
Course Outline
Operating system concepts Operating system structures Introduction to UNIX/Linux user interface Processes and threadsscheduling, concurrency, synchronization, etc. Deadlocks Memory management Virtual memory File system Secondary storage management
Single-user systems Batch systems Multiprogrammed systems Time-sharing systems Real-time systems Interrupts, traps, and software interrupts (UNIX signals) Hardware protection
Introduction to Windows/Linux
Processes
Process concept (process, states, attributes, etc.) Process scheduling (scheduler) Context switching (dispatcher) Operations on processes (creation, termination, signaling, suspend, foreground, background, etc.) Process management in UNIX (fork, wait, exec, exit, etc.)
Processes (continued)
Cooperating processes Interprocess communication (IPC) IPC in UNIX/Linux (pipe, FIFO, socket, message queue, etc.)
Processes (continued)
Communication between UNIX/Linux processes (pipe, mkfifo, read, write, close, etc.) UNIX/Linux processes (process images, control structures, etc. explained with sample code) Managing UNIX/Linux processes (ps, top, fg, bg, <Ctrl-Z>, <Ctrl-C>, etc.)
Threads
Thread concept (thread, states, attributes, etc.) User- and kernel-level threads POSIX threads (the pthread library)
CPU Scheduling
Basic concepts Scheduling criteria Scheduling triggers Scheduling algorithms UNIX System V scheduling algorithm Optimal scheduling Algorithm evaluation
Process Synchronization
Basic concept The Critical Section Problem Solutions for the Critical Section Problem Software-based solutionsthe Bakery Algorithm Hardware-based solutions Semaphores Binary and counting semaphores
Process Synchronization
Classic problems of synchronization Deadlocks and starvation Critical regions Monitors Deadlocks and starvation Thread library functions
Deadlocks
Basic concept Deadlock characterization Deadlock handling (prevention, avoidance, detection and recovery) Bankers algorithm
Memory Management
Basic concepts Various techniques for memory management Logical to physical address translation Swapping Contiguous memory allocation: MFT, MVT External fragmentation Paging Hardware support for paging Internal fragmentation
Memory Management
Performance of paging Protection and sharing Page table issues: Multi-level paging, Hashed page tables, Inverted page tables Segmentation Protection and sharing Segmentation with paging
Virtual Memory
Basic concept Demand paging Page fault Performance of demand paging Page replacement Allocation of frames Thrashing Operating-system examples
Basic concepts (file attributes, operations, types, structure, etc.) Access methods (sequential, random, etc.) Directory structure UNIX/Linux directory structure (links in UNIX) File system mounting, sharing, and protection UNIX/Linux examples for sharing and protection, and relevant commands (chmod, ln, ln s, etc.)
Basic concepts (overview of disk structure, file structure, boot control block, super block, inode, per process file descriptor table, system-wide open-file table, etc.) Directory implementation Free space management methods Space Allocation Methods Time and space performance of allocation methods Brief introduction to Network File System (NFS)
Disk structure and scheduling Disk management (formatting, boot block, bad blocks, etc.) Course Recap
A program that acts as an intermediary between a user of a computer and the computer hardwareprovides the user a simpler (virtual) machine to work with A program that allocates and deallocates computer system resources in an efficient, fair, and secure mannera resource manager
Execute user programs and make solving user problems easier. Make the computer system convenient to use. Use the computer hardware in an efficient manner.