Files
rust-based-os-comp2022/scheduling-2.md
2023-03-28 15:29:55 +08:00

88 lines
6.3 KiB
Markdown
Raw Permalink Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
# 2023年春夏季开源操作系统训练营第二阶段
- [新闻与纪要](./news.md)
- [常见问题解答](./QA.md)
- [Learning Resource](./relatedinfo.md) (训练营学习资源)
- Online Ranking (训练营在线排行榜)
- [uCore Tutorial ClassRoom排名页面]( https://learningos.github.io/2023S-OS-uCore-Classroom-Rank-list/)
- [rCore Tutorial ClassRoom排名页面]( https://learningos.github.io/2023S-OS-rCore-Classroom-Rank-list/)
- Classroom
- [uCore Tutorial ClassRoom邀请链接](https://classroom.github.com/a/5vRW-e_W)
- [rCore Tutorial ClassRoom邀请链接](https://classroom.github.com/a/AFBsVzHi)
- 第二阶段2023.05.012023.07.01线上自学OS基础知识并进行OS实验
- [C-based uCore Tutorial Kernel学习&实验](https://github.com/LearningOS/uCore-Tutorial-Guide-2023S)
- [Rust-based rCore Tutorial Kernel学习&实验](https://github.com/LearningOS/rCore-Tutorial-Guide-2023S)
## 相关信息:
- [参加2020--2022 OS训练营学生的blog](https://rcore-os.github.io/blog/)鼓励参加2023 OS训练营的同学把自己在学习过程中的感悟/收获等写成blog生成pr并提交到 <https://github.com/rcore-os/blog> 上,让更多人看到你的进步!
- **注意** 为及时了解和指导同学的学习和实践情况并推动学生相互帮助本次活动要求学生把每周学习实践的过程记录Markdown格式放在github上自己的公开repo中。可参见[每日学习实践的具体例子](https://github.com/GCYYfun/DailySchedule)和[2020年OS训练营同学的每日学习情况汇总](https://github.com/rcore-os/rCore-Tutorial/issues/18 ) 。请参加实习的同学把记录每天的进展的git repo网址 更新到[2023年OS训练营同学的每日学习情况汇总](https://github.com/LearningOS/rust-based-os-comp2023/issues/1) 中。要求每位同学在自己的git repo中记录自己的每周进展其他同学也可以参考学习。
- **注意** 第二阶段学习中的技术问题,建议基于[OS训练营github discussion](https://github.com/LearningOS/rust-based-os-comp2023/discussion) 发出并讨论。
## 第二阶段活动安排
### 总体学习要求和成绩考核方式
- 在[学习实践过程记录表](https://github.com/LearningOS/rust-based-os-comp2022/issues/1)上登记自己每日/周学习记录情况的repo网址并在这个repo上记录每日/周学习记录情况 (成绩分数20%)
- [学习记录的标杆1](https://github.com/LearningOS/record)浙江大学本科生徐文浩的2020开源操作系统训练营的过程记录是大家学习的榜样供大家学习参考。
- [学习记录的标杆2](https://kiprey.github.io/tags/uCore/)湖南大学本科生肖政杭的自学ucore for x86的过程记录是大家学习的榜样供大家学习参考。
- 在[OS训练营github discussion](https://github.com/LearningOS/rust-based-os-comp2023/discussion) 上的提问和回答问题情况,在[第二阶段OS学习项目](https://github.com/LearningOS/rust-based-os-comp2023/) 、 [rCore Tutorial v3的详细实验指导内容](https://rcore-os.github.io/rCore-Tutorial-Book-v3/) 上的Pull Request提交情况代码改进、文档改进、文档错误等 (成绩分数30%)
- step 0 [第一阶段OS学习的5个实验](https://github.com/LearningOS/rust-based-os-comp2023#kernel-labs)的完成情况和总结报告 (成绩分数70%)
- [第一阶段总结报告的参考杨攀同学的2021年开源操作系统训练营第一阶段总结报告](https://rcore-os.github.io/blog/2021/07/29/rcore-summary-yangpan/)
### 第二阶段的训练步骤
基于C语言或Rust语言进行操作系统内核实验--based on qemu 大约30~60天
前提条件要求有操作系统的基础基本理解RISC-V与OS相关的硬件特性
#### 课程参考
- [课程幻灯片](https://www.yuque.com/docs/share/4c39608f-3051-4445-96ca-f3c018cb96c7)
- 参考书
- [Operating Systems: Three Easy Pieces](https://pages.cs.wisc.edu/~remzi/OSTEP/)
- [深入了解计算机系统](https://hansimov.gitbook.io/csapp/)
- [RISC-V Reader中文版](http://riscvbook.com/chinese/RISC-V-Reader-Chinese-v2p1.pdf)
#### 课程实践rCore Tutorial Book v3
- [课程实践参考书](https://learningos.github.io/rCore-Tutorial-Book-v3/)
- [课程实践代码仓库](https://github.com/rcore-os/rCore-Tutorial-v3)
- [课程实践代码的API文档](https://github.com/rcore-os/rCore-Tutorial-v3#os-api-docs)
#### 基于C语言的uCore Tutorial实验指导
- [实验代码](https://github.com/LearningOS/uCore-Tutorial-Code-2023S/)
- [实验文档](https://learningos.github.io/uCore-Tutorial-Guide-2023S/)
- [测试用例](https://github.com/LearningOS/uCore-Tutorial-Test-2023S)
#### 基于Rust语言的rCore Tutorial实验指导
- [实验文档](https://learningos.github.io/rCore-Tutorial-Guide-2023S/)
- [API文档](https://github.com/LearningOS/rCore-Tutorial-Guide-2023S/#os-api-docs-of-rcore-tutorial-code-2022s)
- [实验代码](https://github.com/LearningOS/rCore-Tutorial-Code-2023S)
- [测试用例](https://github.com/LearningOS/rCore-Tutorial-Test-2023S)
#### [uCore和rCore实验讲解视频](https://www.yuque.com/docs/share/1b5b9260-8a80-4427-a612-78ec72b37e5f)
#### 建立基于ClassRoom实验的具体步骤
**基于C语言的uCore Tutorial**
- [uCore Tutorial ClassRoom邀请链接](https://classroom.github.com/a/5vRW-e_W)点击后按提示可以建立自己的uCore Tutorial实验专用仓库
- [uCore Tutorial ClassRoom排名页面]( https://learningos.github.io/2023S-OS-uCore-Classroom-Rank-list/)可以查看自己的uCore Tutorial实验的排名情况
**基于Rust语言的rCore Tutorial**
- [rCore Tutorial ClassRoom邀请链接](https://classroom.github.com/a/AFBsVzHi)点击后按提示可以建立自己的rCore Tutorial实验专用仓库
- [rCore Tutorial ClassRoom排名页面]( https://learningos.github.io/2023S-OS-rCore-Classroom-Rank-list/)可以查看自己的rCore Tutorial实验的排名情况
请根据各个实验的具体实验要求在自己的仓库中完成5个实验。请在每完成一个实验完成编码和实验报告文档请通过执行 `git push` 命令来更新自己的实验专用 repos来通过基于GitHub Classroom的CI测试。
One More Thing当你看到这感觉第二阶段还没开始还在想下一步要干啥时我们的建议是**Just Do It NOW!**