CS 1550 – Introduction to Operating Systems

Fall Term: 2081

 

 

Class

Recitation

Recitation

Time:

3:00 – 4:15 PM

11:00 – 11:50 AM

3:00 – 3:50 PM

Days:

MW

F

F

Room:

5502 Sennott Sq.

5502 Sennott Sq.

5502 Sennott Sq.

Webpage:

http://www.cs.pitt.edu/~jmisurda/teaching/cs1550.htm  

 

 

Contact Information

 

Instructor: Jonathan Misurda

 

TA: Ali Alanjawi

Office:

6213 Sennott Square

 

Office:

5404 Sennott Square

Email:

jmisurda@cs.pitt.edu

 

Email:

alanjawi@cs.pitt.edu

Office Hours:

MW 1:00-3:00
TH 11:00-12:00

 

Office Hours:

THF 12:30-2:30

 

 

Description

 

Modern computer software can run without specific knowledge of the underlying components of the physical machine. For instance, a program such as Microsoft Word can run on computers with varying amounts of RAM and can print a document without needing to know the make and model of the target printer. Physical resources such as memory and peripheral hardware are managed by the computer’s Operating System software. This course examines the abstractions that an Operating System provides to user-level software and how to most efficiently allocate resources between competing programs. Specifically, we will examine how to share and manage the CPU, memory, persistent storage, I/O devices, and communications.

 

 

Prerequisites

 

Successful completion of CS 0447 – Computer Organization and Assembly Language and CS 0449 – Systems Programming is required to enroll in CS 1550. If you have any questions about the prerequisite material for the course, please ask at the beginning of the term.


Course Purposes and Goals

 

This course is intended to introduce the fundamental concepts that modern operating systems use to manage the physical computer. Beyond the concepts introduced in lecture, course projects will take one such operating system, Linux, and examine source code. Students will be asked to implement additional features into the core of the operating system, known as the kernel.

 

By the end of the course, students will be able to:

 

 

Textbooks

 

[Required Text]

 

Tanenbaum, Andrew S., Modern Operating Systems, Second Edition. Prentice-Hall, Inc., New Jersey, 2001.

 

ISBN: 0-13-031358-0

 

 

Class Policies

 

Exams:  There will be a midterm and a final. The exams will be closed book/notes.

 

The final exam is Saturday, December 15, at 2:00 p.m. in the normal classroom.

 

Cheating on exams will not be tolerated.  Anyone caught cheating will be given a zero for the test and reported to the department following University procedures.

 

Projects:  There will be four out-of-class assignments given.  These are to be completed in the given time (no extensions will be given without a valid excuse.)  These are meant to be your own work; anyone found to be collaborating will be given a zero for the assignment.  Collaborating also means using code from previous terms, other universities, your friends, or finding it on the internet.

 

Quizzes:  There will be short, unannounced quizzes to make sure you are keeping up with the class material.

 

Participation:  Attendance will not be taken, but in a small class, any absence will be noticed.  Several unexcused missed classes will adversely affect your grade.


Grading

 

Your grade will be based upon 2 exams, 4 projects, quizzes (the lowest one of which will be dropped), and participation:

 

Midterm Exam

20%

Final Exam

20%

Project 1

5%

Project 2

10%

Project 3

10%

Project 4

15%

Quizzes

10%

Participation

10%

Total

100%

 

 

The scale for the term will be:

 

Percentage

Letter

100

A+

95

A

90

A-

89

B+

85

B

80

B-

79

C+

75

C

70

C-

69

D+

65

D

60

D-

less than 60

F

 

 

Disability Resources and Services:

 

If you have a disability for which you are requesting an accommodation, you are encouraged to contact both your instructor and Disability Resources and Services, 216 William Pitt Union, (412) 648-7890, as early as possible in the term. DRS will verify your disability and determine reasonable accommodations for this course.

 

 


Term Schedule: The daily topics are subject to change depending on our pace.  They are there to assist you in the readings so you can focus on those concepts prior to class.

 

Week 1: 8/27/2007 - 8/29/2007

Readings for this week: Chapter 1

 

Topics:

  • History of OS
  • System Calls

 

Week 2: 9/3/2007 - 9/5/2007

Readings for this week: 2.1 – 2.2

 

Monday, September 3: Labor Day (University Closed)

 

Topics:

  • Processes
  • Threads

 

Week 3: 9/10/2007 - 9/12/2007

Readings for this week: Remainder of Chapter 2

 

Topics:

  • Scheduling
  • Interprocess Communication

 

Week 4: 9/17/2007 - 9/19/2007

Readings for this week:  Chapter 3

 

Topics:

  • Deadlock avoidance
  • Deadlock prevention

 

Week 5: 9/24/2007 - 9/26/2007

Readings for this week: 4.1 – 4.3

 

Topics:

  • Memory Management
  • Swapping

 

Week 6: 10/1/2007 - 10/3/2007

Readings for this week: Remainder of Chapter 4

 

Topics:

  • VM
  • Page replacement algorithms
  • Review for midterm

 

Week 7: 10/8/2007 - 10/10/2007

Readings for this week:  Prepare for the midterm

 

Topics:

  • Finish the discussion of VM
  • Review

 

Week 8: 10/15/2007 - 10/17/2007

Readings for this week: 5.1 – 5.3

 

Wednesday, October 17: Midterm Exam

 

Topics:

  • I/O – DMA, Interrupts, Polling

 

Week 9: 10/22/2007 - 10/24/2007

Readings for this week:  5.4

 

Topics:

  • Disks
  • RAID
  • Disk Arm Scheduling

 

Week 10: 10/29/2007 - 10/31/2007

Readings for this week: Remainder of Chapter 5

 

Topics:

  • Clocks
  • Terminals/GUIs
  • Power Management

 

Week 11: 11/5/2007 - 11/7/2007

Readings for this week:  Chapter 6

 

Topics:

  • Files
  • File Systems

 

Week 12: 11/12/2007 - 11/14/2007

Readings for this week:  10.6

 

Topics:

  • File System Implementations
  • FAT vs. i-nodes

 

 

 

 

Week 13: 11/19/2007 - 11/21/2007

Readings for this week:  Chapter 9

 

Wednesday, November 21: Thanksgiving Break (University Closed)

 

Topics:

  • Security
  • Encryption
  • Authentication

 

Week 14: 11/26/2007 - 11/28/2007

Readings for this week:  Chapter 9

 

Topics:

  • Viruses
  • Worms
  • Access Control Lists

 

Week 15: 12/3/2007 - 12/5/2007

Readings for this week:  Prepare for the final exam

 

Topics:

  • Finish Up Security
  • Review for the final exam

 

Saturday, December 15

 

The final exam is Saturday, December 15, at 2:00 p.m. in the normal classroom.