(Posted Jun 3, 2024)
(Posted May 30, 2024)
(Posted May 7, 2024)
The following schedule is tentative and subject to change without notice.
Credit: Most of slides for this lecture are based on materials provided by the authors of the textbook and references.
For project submission and automatic grading, we are running a dedicated server at https://sys.snu.ac.kr. If you want to access the sys server outside of the SNU campus, please send a request via a Google Form whose URL is posted in the eTL.
Microsoft’s early FAT file system has a unique file index structure based on the File Allocation Table (FAT). The goal of this project is to implement the “FATty” file system, which modifies the file index structure of the existing xv6
file system to resemble that of the FAT file system.
KSM (Kernel Samepage Merging) is a memory de-duplication feature that enables the kernel to consolidate identical memory pages into a single shared page across multiple processes, thereby saving memory. The objective of this project is to explore the virtual memory subsystem of xv6
by implementing the KSM feature.
Currently, the CPU scheduler of xv6
uses a simple round-robin policy. The goal of this project is to understand the scheduling subsystem of xv6
by implementing the EDF (Earliest Deadline First) scheduler used in real-time systems.
System calls are the interfaces that allow user applications to request various services from the operating system kernel. This project aims to understand how those system calls are implemented in xv6
.
xv6
is an instructional operating system developed by MIT based on Ken Thompson and Dennis Ritchie’s Unix version 6 (v6). In this course, we will use xv6-riscv
, a version recently ported to a multi-core RISC-V machine. The goal of this project is to set up your development environment on Linux or macOS and familiarize yourself with our project submission server.
When | 12:30 - 13:45 (Tuesday / Thursday) |
Where | Lecture room #301-203, Engineering Building I |
Instructor | Jin-Soo Kim Professor, Dept. of Computer Science and Engineering, SNU |
Language | Korean |
Course Description | This course covers topics on general operating system concepts such as process management, memory management, I/O systems, and file systems, with the in-depth study on the latest Linux operating system. In addition, students are required to perform several hands-on projects with the xv6 instructional OS. |
Textbook | Remzi H. Arpaci-Dusseau and Andrea C. Arpaci-Dusseau, Operating Systems: Three Easy Pieces, Arpaci-Dusseau Books, August 2018 (Version 1.00) |
Reference | Thomas Anderson and Michael Dahlin, Operating Systems: Principles and Practice, 2nd Edition, Recursive Books, August 2014. Andrew S. Tanenbaum and Herbert Bos, Modern Operating Systems, 5th Edition, Pearson, March 2022. |
Prerequisites | M1522.000800 System Programming 4190.308 Computer Architecture |
Grading | Exams: 60% (Midterm 25%, Final 35%) Projects: 40% (1%, 5%, 9%, 10%, 15%) * Grading policy is subject to change |
Teaching Assistants | Hyungjoon Kwon, Seungtaek Oh, Kyujin Cho (snucsl.ta AT gmail.com) |