Course Information | ||||
---|---|---|---|---|
Course Section | Lecture Hours | Location | ||
CMP 426 & CMP 697 - ZH81 | Mo & We 6:00 pm – 7:40 pm | GI 333 |
Contact Information | ||||
---|---|---|---|---|
Instructor: | Steven Fulakeza | Email: | steven.fulakeza(at)lehman.cuny.edu | |
Phone: | NA | Office Location: | GI 232 | |
Office Hours: | Mon and Wed 1:40 pm to 3:40 pm | |||
Instructor Availability: | I reply to students' emails regularly but please note that I do not typically check email or Slack messages during late hours on weekdays, and I do not check these at all on the weekends in order to devote time to family, rest, and religious observances. Messages received during these times will receive attention once I am back online. |
CMP 426 Course Description: 4 hours, 4 credits
Operating systems and their role in various types of computer systems; the principles of multiprogramming; algorithms for resource allocation; multiple-computer systems. PREREQ: CMP 334 and CMP 338.
CMP 697 Course Description: 4 hours, 4 credits
A study of the functions and implementation of operating systems for various sizes and types of computers. Processor, storage, and device management. Paging algorithms, thrashing. File systems, concurrency, deadlocking, semaphores, and synchronization.
Course Objectives:
At the end of the course, students should be able to:
Textbook:
A. Silberschatz, P. Galvin, and G. Gagne, Operating System Concepts, 10 th Edition, Wiley, 2018.
Zybook code: CUNYCMP426CMP697FulakezaFall2024
Textbook Web Site:
Grade Policy:
Your grades will be computed based on the following:
CMP 426:
Activity | Percentages |
---|---|
Participation Activities from the textBook and Quizzes | 10% |
Homework Assignments | 30% |
Midterm Exam | 30% |
Final Exam | 30% |
CMP 697:
Activity | Percentages |
---|---|
Participation Activities from the textBook and Quizzes | 10% |
Homework Assignments and Blackboard Quizzes | 30% |
Midterm Exam | 25% |
Final Exam | 25% |
Research Paper and Presentation (for graduate students only) | 10% |
Exam Schedule:
Final Exam: 12/18/2024 6:15pm to 8:30pm.
There are no make-up exams. However, makeup exam might be given only if when a student's absence is unavoidable. In such a case, the student must file formal written request with substantial evidence.
The last date to withdraw from a course with a W is November 6th by 11:59PM
Homework Assignments and Submission
Several homework assignments are given during lectures. Students need to work on the homework for preparing exams but may not need to submit the homework assignments to the instructor. Some selected homework problems will be assigned as formal assignments to be submitted for grading.
Students must work in their own assignments unless I state otherwise. No late assignments will be accepted.
Homework assignments will include the following areas and more:
Graduate Students Research Paper:
For Graduate Students Only (CMP 697): Research Paper (12 - 15 pages double space in 12 fonts) in various contemporary research areas such as:
Some details about research paper writing and presentation will be discussed during office hours. Research Paper Proposal Due: November 04, 2024 by 11:59 pm via email (1 page of extended abstract with at least 5 academic research papers as references)
Research Paper Due Date: December 11, 2023, by 11:59 pm via email
Research Paper Presentation Date: December 11, 2023 at the beginning of class
Survey Research Paper Structure
Honor Code
Students are encouraged to study together. However, you must do your own work for all your homework assignments, projects and exams. You should never copy code or antwork from the internet or another student. You are responsible for knowing and following Lehman's academic integrity code (available from the Undergraduate Bulletin, Graduate Bulletin, or the Office of Academic Standards and Evaluations). All incidents of cheating will be reported to the Vice President of Student Affairs.
Expectations
Students are expected to learn both the material covered in class and the material in the textbook and other assigned reading. Completing homework is an essential part of the learning experience. Students should review topics from prior courses as needed using old notes and books.
Blackboard & Communication
I will be communicating with you on a regular basis throughout the semester using the email address listed on Blackboard for this course. You are required to make sure that the email address on Blackboard is your current Lehman email address and you must check it on a regular basis. There will be no acceptable excuse for missing an email announcement.
Accommodating Disabilities:
Lehman College is committed to providing access to all programs and curricula to all students. Students with disabilities who may need classroom accommodations are encouraged to register with the Office of Student Disability Services. For more info, please contact the Office of Student Disability Services, Shuster Hall, Room 238.
Phone number: 718-960-8441
Email: disability.services@lehman.cuny.edu
Webpage: http://www.lehman.edu/student-disability-services
Topics and Slides:
Overview
Process Management
Process Synchronization
Memory Management
Storage Management
Tentative Schedule:
Week | Day | Date | Topic | Reading Materials |
---|---|---|---|---|
1 | 1 | 08/28/2024 | Introduction, Syllabus, Chapter 1 | Syllabus & Chapter 1 |
1 | 2 | 09/02/2024 | Chapter 1 | Chapter 1 |
2 | 3 | 09/04/2024 | Labor Day College closed – NO CLASSES | |
2 | 4 | 09/09/2024 | Chapter 2 - OS Structures: OS Services, User and OS Interface, Shell, Kernel, System calls | Chapter 2 |
3 | 5 | 09/11/2024 | Chapter 2 - OS Structures: System calls, System Services, Linkers and Loaders | Chapter 2 |
3 | 6 | 09/16/2024 | Chapter 2 - OS Structures: Operating-System Design and Implementation, Operating-System Structure | Chapter 2 |
4 | 7 | 09/18/2024 | Chapter 3 - Processes: Process concept, Process state, process control block, Process scheduling, Operations on Processes | Chapter 3 |
4 | 8 | 09/23/2024 | Chapter 3 - Processes: Write a program to create and execute a process using the fork() system call | Chapter 3 |
5 | 9 | 09/25/2024 | No classes scheduled | |
5 | 10 | 09/30/2024 | Chapter 3 - Processes: Interprocess Communication, Asynchronous, Synchronous communication | Chapter 3 |
6 | 11 | 10/02/2024 | Chapter 3 - Processes: Sockets, Pipes | Chapter 3 |
6 | 12 | 10/07/2024 | Chapter 4 - Threads & Concurrency: Threads, relationship to processes, creation/termination | Chapter 4 |
7 | 13 | 10/09/2024 | Chapter 3 - Processes: Interprocess Communication, Asynchronous, Synchronous communication | Chapter 3 |
7 | 14 | 10/14/2024 | Chapter 4 - Threads & Concurrency | Chapter 4 |
8 | 15 | 10/16/2024 | Chapter 5 - CPU Scheduling | Chapter 5 |
8 | 16 | 10/21/2024 | Chapter 5 - CPU Scheduling | Chapter 5 |
9 | 17 | 10/23/2024 | Chapter 5 - CPU Scheduling | Chapter 5 |
9 | 18 | 10/28/2024 | Chapter 6 - Synchronization Tools: Critical sections, Peterson's, Atomic hardware solutions | Chapter 6 |
10 | 19 | 10/30/2024 | Chapter 6 - Synchronization Tools: Mutexes, spinlocks, Semaphores | Chapter 6 |
10 | 20 | 11/04/2024 | Exam Review | Read & Review Chapters 1 through 6 |
11 | 21 | 11/06/2024 | Midterm exam | Read & Review Chapters 1 through 6 |
11 | 22 | 11/11/2024 | Chapter 7 - Synchronization Examples: Producer-Consumer, Readers-Writers, Dining Philosophers | Chapter 7 |
12 | 23 | 11/13/2024 | Chapter 8 - Deadlocks: Deadlocks, Deadlock detection, Algorithms | Chapter 8 |
12 | 24 | 11/18/2024 | Chapter 8 - Deadlocks: Algorithms, Recovery from Deadlock | Chapter 8 |
13 | 25 | 11/20/2024 | Chapter 9 - Memory Management - Contiguous memory allocation | Chapter 9 |
13 | 26 | 11/25/2024 | Chapter 9 - Memory Management - Relocation and Paging, Hierarchical Paging | Chapter 9 |
14 | 27 | 11/27/2024 | Chapter 9 - Memory Management - Swapping | Chapter 9 |
14 | 28 | 12/02/2024 | Chapter 3 - Processes: Interprocess Communication, Asynchronous, Synchronous communication | Chapter 3 |
15 | 29 | 12/04/2024 | Chapter 10 - Virtual Memory - Demand Paging, COW | Chapter 10 |
15 | 30 | 12/09/2024 | Chapter 10 - Virtual Memory - Page Replacement, Thrashing, Working set | Chapter 10 |
16 | 31 | 12/11/2024 | Chapter 11 - Storage Management - HDD Scheduling and RAID Structure | Chapter 11 |
16 | 32 | 12/16/2024 | Chapter 11 - Storage Management - HDD Scheduling and RAID Structure and Exam Review | Chapter 11 |
17 | 33 | 12/18/2024 | Reading Day |
Homework Assigments:
Assignment | Release Date | Due Date |
---|
Projects:
Project | Release Date | Due Date |
---|---|---|
C Programming Resources
Getting Started with the Command Line
The following links are useful you to get you started with the command line
Operating System Examples