
6.828
文章平均质量分 88
fkuner
这个作者很懒,什么都没留下…
展开
-
6.828:Opertate System Engineering Fall 2018
课程链接:https://pdos.csail.mit.edu/6.828/2018/schedule.html文章目录LectureLabLectureLab原创 2021-06-29 14:54:15 · 321 阅读 · 0 评论 -
6.828:Lab1 Booting a PC 实验总结
Part3Exercise 8.We have omitted a small fragment of code - the code necessary to print octal numbers using patterns of the form “%o”. Find and fill in this code fragment.原创 2021-07-15 21:10:19 · 739 阅读 · 0 评论 -
6.828:Lab2 Memory Management 实验总结
文章目录Part1 Physical Page ManagementPart2 Virtual MemoryPart1 Physical Page ManagementExercise 1. In the file kern/pmap.c, you must implement code for the following functions (probably in the order given).boot_alloc()mem_init() (only up to the call to c原创 2021-07-19 20:21:37 · 307 阅读 · 0 评论 -
6.828:Lab3 User Environments 实验总结
文章目录Part A: User Environments and Exception HandlingEnvironment StatePart A: User Environments and Exception HandlingEnvironment State原创 2021-08-04 00:04:00 · 819 阅读 · 0 评论 -
6.828:Lab4 Preemptive Multitasking 实验总结
Part A: Multiprocessor Support and Cooperative MultitaskingMultiprocessor Supporteach CPU has a local APIC(LAPIC)unitThe LAPIC units are responsible for delivering interrupts throughout the system. The LAPIC also provides its connected CPU with a unique原创 2021-08-11 23:12:39 · 337 阅读 · 0 评论 -
6.828:Lab5 File system, Spawn and Shell 实验总结
File system preliminariesOn-Disk File System Structure原创 2021-08-18 19:01:31 · 226 阅读 · 0 评论 -
6.828:Lab6 Network Driver 实验总结
QEMU’s virtual networkPacket Inspectiontcpdump -XXnr qemu.pcapDebugging the E1000The Network ServerPart A: Initialization and transmitting packetsExercise1The Network Interface CardExercise2Browse Intel’s Software Developer’s Manual for the E1000原创 2021-08-19 16:30:13 · 250 阅读 · 0 评论 -
6.828:Homework 作业报告
文章目录Boot xv6shellxv6 system callsBoot xv6shell// Execute cmd. Never returns.voidruncmd(struct cmd *cmd){ int p[2], r; struct execcmd *ecmd; struct pipecmd *pcmd; struct redircmd *rcmd; if(cmd == 0) _exit(0); switch(cmd->type){原创 2021-07-27 01:06:05 · 368 阅读 · 0 评论 -
读书笔记:《xv6:a simple, Unix-like teaching operating system》
文章目录Chapter 0 Operating system interfacesChapter 0 Operating system interfaces10页原创 2021-07-19 21:23:57 · 429 阅读 · 0 评论