CSCI-GA.3250-001: Labs

Getting started

Assignments

Lab number and topicDueWeight
Lab 1: x86 assembly, boot loader 09/11/15 TBD
Lab 2: Virtual memory 09/16/15 9/18/15 (part A), 09/25/15 (part B) TBD
Lab 3: Processes/environments 10/02/15 (part A), 10/09/15 (part B) TBD
Lab 4: Multiprogramming and fork 10/16/15 (part A), 10/23/15 (part B), 10/30/15 (part C) TBD
Lab 5: File system, spawn, and shell 11/06/15 TBD
Lab 6: Network driver 11/13/15 (part A), 11/20/15 (part B) TBD
Lab 7: Final project 11/16/15 (proposals), 12/21/15 (code), TBD (demos) TBD

Is any kind of collaboration permitted on the labs?

No. The collaboration policy elaborates.

Overview

A crucial component of the course is the labs. You should expect these labs to require you to spend substantial time programming.

You will implement (the interesting pieces of) a real operating system that will boot on a PC. The operating system is called JOS. (JOS was developed at MIT and has been used in courses at several other schools, including UCLA, UT, and NYU.)

Though simple, JOS includes many key operating systems abstractions, including a bootloader, memory protection, memory relocation, and multiprogramming. JOS can be thought of as an exokernel, where the kernel implements a minimal set of core functionality that safely exports hardware resources to applications. These low-level kernel interfaces may be inconvenient for user processes to use directly, so user processes make use of a "library operating system" (libos) to abstract these low-level exported resources into more convenient programming abstractions.

In the JOS portion of the labs, the labs build on one another. Thus, it is important that you design, build, and test carefully at each step. Carelessness early will be costly later. There are not many lines of code to write on this project; take the time to understand each phase before moving to the next one.


Last updated: 2015-12-03 18:49:19 -0500 [validate xhtml]