Zhaoyan LU
From Dusk Till Dawn

Courses

6.1810

6.1810 Labs References Lab guidance Lab 1 Lab: Xv6 and Unix utilities 1.1 Boot xv6 Install tools first. Migrate all branches from the original git repo to my own Github repo. $ git clone --mirror git://g.csail.mit.edu/xv6-labs-2023 $ cd xv6-labs-2023 $ git push --mirror git@github.com:LouisLU9911/xv6-labs-2023.git make qemu $ make qemu 1.2 sleep #include "kernel/types.h" #include "kernel/stat.h" #include "user/user.h" int main(int argc, char *argv[]) { if (argc <= 1) { char * errMsg = "Please input an integer.

Linear Algebra

This post contains notes on the MIT OpenCourseWare Linear Algebra course. Contents LECTURE 1: The Geometry of Linear Equations LECTURE 2: Elimination with Matrices 2.1 Example Equations 2.2 Elimination 2.3 Back-Substitution 2.4 Matrices Multiplication LECTURE 1: The Geometry of Linear Equations Ax is a combination of the columns of A. $$ A = \begin{bmatrix} 2 & 5 \\ 1 & 2 \end{bmatrix}, x = \begin{bmatrix} 1 \\ 2 \end{bmatrix} $$

Back to top