Chap2: Operating-System Structures

Similar documents
CS370 Operating Systems

CS420: Operating Systems. OS Services & System Calls

Chapter 2: Operating-System Structures. Operating System Concepts 9 th Edit9on

Chapter 2: System Structures. Operating System Concepts 9 th Edition

Chapter 2: Operating-System Structures

Chapter 2: Operating-System Structures

Chapter 2: Operating-System Structures

Chapter 2: Operating-System Structures. Chapter 2: Operating-System Structures. Objectives. Operating System Services

Chapter 2: Operating-System Structures. Operating System Concepts Essentials 8 th Edition

Chapter 2: Operating-System

Chapter 2. Operating-System Structures

Chapter 2: Operating-System Structures. Operating System Concepts 9 th Edition

Objectives. Chapter 2: Operating-System Structures. 2.1 Operating System Services

Chapter 2: System Structures

Chapter 2: Operating-System Structures

Operating System Services

Chapter 2: Operating-System Structures

Lecture 2 Operating System Structures (chapter 2)

TDDI04, K. Arvidsson, IDA, Linköpings universitet Operating System Structures. Operating System Structures Overview. Operating System Services

Chapter 2: System Structures. Operating System Concepts 9 th Edition

CS307: Operating Systems

Chapter 2: Operating-System Structures. Operating System Concepts 8 th Edition

Operating-System Structures

The Slide does not contain all the information and cannot be treated as a study material for Operating System. Please refer the text book for exams.

CHAPTER 2: SYSTEM STRUCTURES. By I-Chen Lin Textbook: Operating System Concepts 9th Ed.

Chapter 2: System Structures

Computer Systems and Architecture

Introduction to Unix The Windows User perspective. Wes Frisby Kyle Horne Todd Johansen

Chapter 2. Operating System Structures

Chapter 2 Operating-System Structures

Computer Systems and Architecture

Module 1 Introduction/OS Overview

Operating Systems. Copyleft 2005, Binnur Kurt

Operating Systems 3. Operating Systems. Content. What is an Operating System? What is an Operating System? Resource Abstraction and Sharing

Introduction to PC Operating Systems

CSE Linux VM. For Microsoft Windows. Based on opensuse Leap 42.2

Introduction to Linux

Mid Term from Feb-2005 to Nov 2012 CS604- Operating System

What are some common categories of system calls? What are common ways of structuring an OS? What are the principles behind OS design and

Operating Systems. Designed and Presented by Dr. Ayman Elshenawy Elsefy

Perl and R Scripting for Biologists

Operating System Services. User Services. System Operation Services. User Operating System Interface - CLI. A View of Operating System Services

(MCQZ-CS604 Operating Systems)

Chapter 2 Operating System Structures

Operating System Concepts Ch. 2: Operating System Structures

Linux Command Line Primer. By: Scott Marshall

UNIX. The Very 10 Short Howto for beginners. Soon-Hyung Yook. March 27, Soon-Hyung Yook UNIX March 27, / 29

Introduction to UNIX. Logging in. Basic System Architecture 10/7/10. most systems have graphical login on Linux machines

Introduction to Linux Workshop 1

Introduction to the Linux Command Line January Presentation Topics

Unix/Linux Operating System. Introduction to Computational Statistics STAT 598G, Fall 2011

*nix Crash Course. Presented by: Virginia Tech Linux / Unix Users Group VTLUUG

Introduction to UNIX/Linux

CPS221 Lecture: Operating System Functions

Introduction to Unix: Fundamental Commands

Introduction to Linux

CENG 334 Computer Networks. Laboratory I Linux Tutorial

Shells. A shell is a command line interpreter that is the interface between the user and the OS. The shell:

CSC209H Lecture 1. Dan Zingaro. January 7, 2015

Introduction to Linux

Introduction to Linux. Woo-Yeong Jeong Computer Systems Laboratory Sungkyunkwan University

Linux Bootcamp Fall 2015

OPERATING SYSTEMS. Prescribed Text Book Operating System Principles, Seventh Edition By Abraham Silberschatz, Peter Baer Galvin and Greg Gagne

Working with Basic Linux. Daniel Balagué

Lab 2: Linux/Unix shell

Contents. Note: pay attention to where you are. Note: Plaintext version. Note: pay attention to where you are... 1 Note: Plaintext version...

Command-line interpreters

Chapter-3. Introduction to Unix: Fundamental Commands

Introduction to Linux

LAB #7 Linux Tutorial

Introduction to Linux Organizing Files

Connecting to ICS Server, Shell, Vim CS238P Operating Systems fall 18

Hitchhiker s Guide to VLSI Design with Cadence & Synopsys

Roadmap. Tevfik Ko!ar. CSC Operating Systems Fall Lecture - VII CPU Scheduling - II. Louisiana State University

Roadmap. Multilevel Queue Scheduling. Multilevel Queue. Example of Multilevel Feedback Queue. Multilevel Feedback Queue. Tevfik Ko!

Introduction to Linux. Fundamentals of Computer Science

Linux Operating System Environment Computadors Grau en Ciència i Enginyeria de Dades Q2

Introduction p. 1 Who Should Read This Book? p. 1 What You Need to Know Before Reading This Book p. 2 How This Book Is Organized p.

History. Terminology. Opening a Terminal. Introduction to the Unix command line GNOME

Introduction To Linux. Rob Thomas - ACRC

Unix Processes. What is a Process?

Architectural Support for Operating Systems. Jinkyu Jeong ( Computer Systems Laboratory Sungkyunkwan University

System Administration

3/8/2017. Unix/Linux Introduction. In this part, we introduce. What does an OS do? Examples

Traditional Access Permissions

Introduction. Let s start with the first set of slides

Using Commands. Introduction to Unix. May 24, 2008 Rabat, Morocco. Hervey Allen

Processes. Shell Commands. a Command Line Interface accepts typed (textual) inputs and provides textual outputs. Synonyms:

What is UNIX? A Little Bit about UNIX and User Interfaces. Adapted from Practical Unix and Programming Hunter College

Lab Working with Linux Command Line

Linux Systems Administration Getting Started with Linux

Linux for Beginners. Windows users should download putty or bitvise:

Introduction of Linux

Part 1: Basic Commands/U3li3es

EECS 2031E. Software Tools Prof. Mokhtar Aboelaze

M2PGER FORTRAN programming. General introduction. Virginie DURAND and Jean VIRIEUX 10/13/2013 M2PGER - ALGORITHME SCIENTIFIQUE

Introduction to UNIX Shell Exercises

Operating Systems and Databases AE3B33OSD. RNDr. Petr Štěpán, Ph.D 13:30 15:45. Introduction

Operating System Structure

EECS2301. Lab 1 Winter 2016

Transcription:

Chap2: Operating-System Structures Objectives: services OS provides to users, processes, and other systems structuring an operating system how operating systems are designed and customized and how they boot Slides based on Text by Silberschatz, Galvin, Gagne Berkeley Operating Systems group S. Pallikara Other sources Yashwant K Malaiya Fall 2015 1 1

Chapter 2: Operating System Structures Operating System Services User Operating System Interface System Calls, types of System Calls System Programs Operating System Design and Implementation Operating System Structure Operating System Generation System Boot 2

OS Services for the User 1/3 Operating systems provide an environment for execution of programs and services to programs and users User interface Almost all operating systems have a user interface (UI). Varies between Command Line (CLI), Graphics User Interface (GUI), Batch Program execution The system must be able to load a program into memory and to run that program, end execution, either normally or abnormally (indicating error) I/O operations A running program may require I/O, which may involve a file or an I/O device 3

OS services for the User 2/3 (Cont.) File system manipulation read and write files and directories, create and delete them, search them, list file Information, permission management. Communications Processes may exchange information, on the same computer or between computers over a network via shared memory or through message passing (packets moved by the OS) Error detection OS needs to be constantly aware of possible errors May occur in the CPU and memory hardware, in I/O devices, in user program For each type of error, OS should take the appropriate action to ensure correct and consistent computing 4

OS services for system 3/3 (Cont.) OS functions for ensuring the efficient operation of the system itself via resource sharing Resource allocation When multiple users or multiple jobs running concurrently, resources must be allocated to each of them Many types of resources CPU cycles, main memory, file storage, I/O devices. Accounting To keep track of which users use how much and what kinds of computer resources Protection and security The owners of information stored in a multiuser or networked computer system may want to control use of that information, concurrent processes should not interfere with each other Protection involves ensuring that all access to system resources is controlled Security of the system from outsiders requires user authentication, extends to defending external I/O devices from invalid access attempts 5

6 A View of Operating System Services

User Operating System Interface CLI CLI or command interpreter allows direct command entry Sometimes implemented in kernel, sometimes by systems program Sometimes multiple flavors implemented shells Primarily fetches a command from user and executes it Sometimes commands built in, sometimes just names of programs If the latter, adding new features doesn t require shell modification Ex: Windows: command Linux: bash 7

8 Bourne Shell Command Interpreter

Common bash commands 1/2 pwd Working directory ls l Files in the working dir ling format cd dirpath Change to dirpath dir... ~username / This, upper, usename s home, root cp f1 d1 Copy f1 to dir d1 mv f1 d1 Move f1 to d1 rm f1 f2 Remove f1, f2 mkdir d1 Create directory d1 which x1 Path for executable file x1 man cm help cm Manual entry or help with command cm ls > f.txt Redirect command std, output to f.txt, >> to append sort < list.txt Std input from file ls l less Pipe first command into second 9

Common bash commands 2/2 Echo $((expression)) echo $PATH Echo $SHELL chmod 755 dir jobs ps kill id cmd & fg id ctrl z followed by bg or fg w who ping ipadd ssh user@host grep pattern files Ctrl c 10 Evaluate expression Show PATH Show default shell List jobs or processes Kill job or process with id Start job in background Bring job id to foreground Suspend job and put it in background Who is logged on Get a ping from ipadd Connect to host as user Search for pattern in files Halt current command

User Operating System Interface GUI User friendly desktop metaphor interface Usually mouse, keyboard, and monitor Icons represent files, programs, actions, etc Various mouse buttons over objects in the interface cause various actions (provide information, options, execute function, open directory (known as a folder) Invented at Xerox PARC Most systems now include both CLI and GUI interfaces Microsoft Windows is GUI with CLI command shell Apple Mac OS X is Aqua GUI interface with UNIX kernel underneath and shells available Unix and Linux have CLI with optional GUI interfaces (CDE, KDE, GNOME) 11

Touchscreen Interfaces Touchscreen devices require new interfaces Mouse not possible or not desired Actions and selection based on gestures Virtual keyboard for text entry Voice commands. 12

13 The Mac OS X GUI

System Calls Programming interface to the services provided by the OS Typically written in a high level language (C or C++) Mostly accessed by programs via a high level Application Programming Interface (API) rather than direct system call use Three most common APIs are Win32 API for Windows, POSIX API for POSIX based systems (including virtually all versions of UNIX, Linux, and Mac OS X), and Java API for the Java virtual machine (JVM) Note that the system-call names used throughout this text are generic 14

Example of System Calls System call sequence to copy the contents of one file to another file 15