{"id":13460293,"url":"https://github.com/rustcc/writing-an-os-in-rust","last_synced_at":"2025-05-15T11:08:06.364Z","repository":{"id":37664489,"uuid":"162876593","full_name":"rustcc/writing-an-os-in-rust","owner":"rustcc","description":"《使用Rust编写操作系统》","archived":false,"fork":false,"pushed_at":"2023-06-23T13:03:39.000Z","size":469,"stargazers_count":2215,"open_issues_count":8,"forks_count":208,"subscribers_count":61,"default_branch":"master","last_synced_at":"2025-04-14T19:58:46.667Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"","language":"Rust","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"other","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/rustcc.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null}},"created_at":"2018-12-23T09:05:02.000Z","updated_at":"2025-04-14T09:12:40.000Z","dependencies_parsed_at":"2024-01-14T07:13:47.962Z","dependency_job_id":"34638c38-70f1-49dc-abc7-68d9fc00f2c1","html_url":"https://github.com/rustcc/writing-an-os-in-rust","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rustcc%2Fwriting-an-os-in-rust","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rustcc%2Fwriting-an-os-in-rust/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rustcc%2Fwriting-an-os-in-rust/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rustcc%2Fwriting-an-os-in-rust/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/rustcc","download_url":"https://codeload.github.com/rustcc/writing-an-os-in-rust/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":254328384,"owners_count":22052632,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2024-07-31T10:00:38.825Z","updated_at":"2025-05-15T11:08:06.346Z","avatar_url":"https://github.com/rustcc.png","language":"Rust","funding_links":[],"categories":["Rust","语言资源库","General Operating System","书籍/教程/文档"],"sub_categories":["rust"],"readme":"# writing-an-os-in-rust\n\n《编写 Rust 语言的操作系统》简体中文翻译\n\n## 目录\n\n### 正文\n\n| 序号 | 标题             | 链接                                              | 源文件                                   | 状态    | 长度    |\n| ---- | ---------------- | ------------------------------------------------- | ---------------------------------------- | ------- | ------- |\n| 一   | 独立式可执行程序 | [知乎专栏](https://zhuanlan.zhihu.com/p/53064186) | [点我](./01-freestanding-rust-binary.md) | Done    | 11 千字 |\n| 二   | 最小化内核       | [知乎专栏](https://zhuanlan.zhihu.com/p/56433770) | [点我](./02-minimal-rust-kernel.md)      | Done    | 19 千字 |\n| 三   | VGA 字符模式     | [知乎专栏](https://zhuanlan.zhihu.com/p/53745617) | [点我](./03-vga-text-mode.md)            | Done    | 21 千字 |\n| 四   | 内核测试         | [知乎专栏](https://zhuanlan.zhihu.com/p/90758552) | [点我](./04-testing.md)                  | Done    | 27 千字 |\n| 五   | CPU 异常         | 待添加                                            | [点我](./05-cpu-exceptions.md)           | Pending | -       |\n| 六   | 双重异常         | 待添加                                            | [点我](./06-double-fault-exceptions.md)  | Pending | -       |\n| 七   | 硬件中断         | 待添加                                            | [点我](./07-hardware-interrupts.md)      | Done | 21 千字 |\n| 八   | 内存分页简介     | 待添加                                            | [点我](./08-introduction-to-paging.md)   | Done | 16 千字 |\n| 九   | 内存分页实现     | 待添加                                            | [点我](./09-paging-implementation.md)     | Done | 28 千字 |\n| 十   | 堆分配           | 待添加                                            | [点我](./10-heap-allocation.md)          | Done | 20 千字 |\n| 十一 | 内存分配器设计   | 待添加                                            | [点我](./11-allocator-designs.md)        | Done | 35 千字 |\n| 十二 | Async/Await   | 待添加                                            | [点我](./12-async-await.md)        | Done | 51 千字 |\n\n### 附录\n\n| 序号   | 标题             | 链接                                              | 源文件                                   | 状态    | 长度   |\n| ------ | ---------------- | ------------------------------------------------- | ---------------------------------------- | ------- | ------ |\n| 附录一 | 链接器参数       | [知乎专栏](https://zhuanlan.zhihu.com/p/69393545) | [点我](./appendix-a-linker-arguments.md) | Done    | 6 千字 |\n| 附录二 | 禁用红区         | [知乎专栏](https://zhuanlan.zhihu.com/p/53240133) | [点我](./appendix-b-red-zone.md)         | Done    | 2 千字 |\n| 附录三 | 禁用 SIMD        | [知乎专栏](https://zhuanlan.zhihu.com/p/53350970) | [点我](./appendix-c-disable-simd.md)     | Done    | 2 千字 |\n| 附录四 | 在安卓系统上构建 | 待添加                                            | 待添加                                   | Pending | -      |\n\n### 译名表\n\n[点我](./translation-table.md)\n\n## 译者\n\n- 洛佳 (@luojia65)，华中科技大学\n- 龙方淞 (@longfangsong)，上海大学开源社区\n- readlnh (@readlnh)\n- 尚卓燃 (@psiace)，华中农业大学\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Frustcc%2Fwriting-an-os-in-rust","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Frustcc%2Fwriting-an-os-in-rust","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Frustcc%2Fwriting-an-os-in-rust/lists"}