CS162 HW 0: Introduction

Docker配置环境

  • 教程
  • 也可以参考课程网站配置VirtualBox,但我的机子跑不出来😭

Docker目录挂载

  • 获取实验仓库

1
git clone git@github.com:Berkeley-CS162/student0.git
  • 目录挂载

1
docker run -it --rm --name pintos --mount type=bind,source=/home/huayi/student0,target=/home/PKUOS/pintos pkuflyingpig/pintos bash
  • 可以让主机和docker镜像共用目录

Tools

  • 老生常谈的几个工具了

exercise

MIT 6.S081 Lab thread

Compulsory exercises

Preparation

  • reading

    To start the lab, switch to the thread branch:
1
2
3
git fetch
git checkout thread
make clean
阅读更多