Individual Coursework of "Operating System Project" in Spring Semester
Author: Zinuo You
Grade: 94/100
Reference: MIT JOS (BUAA OS simplified the architecture from x86 to MIPS, for undergraduate education)
Guide Book:
- Target: Master the basic Linux commands, common tools, and Git usage in a command-line environment.
- Target:
- Understand OS booting process and Gxemul MIPS simulator.
- Implement ELF file parsing and loading.
- Understand memory layout and load OS kernel to the proper address.
- Target:
- Understand memory accessing through MMU and TLB, and memory mapping mechanism.
- Implement physical memory management with queues and linked lists.
- Implement paged virtual memory management.
- Report: lab2-report(Chinese)
- Target:
- Understand "process control block".
- Implement process management to run an executable binary file.
- Implement process schduling on CPU timer interrupts.
- Report: lab3-report(Chinese)
- Target:
- Understand the function and the process of system call.
- Implemnet basic system calls of memory management and yield.
- Implement IPC process communication through system calls.
- Implement process Fork with "Copy On Write" and "Page Fault Handling".
- Report: lab4-report(Chinese)
- Target:
- Understand file system mechanism and microkernel design.
- Implement IDE external storage disk driver.
- Implement the file system structures on Disks(blocks management with Bitmap) and on OS(file control blocks with singly indirect pointers).
- Implement the interfaces of the file system for interaction between user process and file system server.
- Report: lab5-report(Chinese)
- Target:
- Implement anonymous pipes communication under process competition environment.
- Understand the mechanism of Shell process with pipes.
- Report:lab6-report(Chinese)
- Implement a simplified POSIX Thread mechanism, which supports full sharing of user space and mutual stack access between threads with only a small amount of necessary private space.
- Implement unnamed POSIX Semaphore for the synchronization and the communitcation in a process.
- Slide:lab-challenge-POXIS(Chinese)