{"id":13579415,"url":"https://github.com/rcore-os/rCore","last_synced_at":"2025-04-05T20:34:14.533Z","repository":{"id":38421857,"uuid":"127721040","full_name":"rcore-os/rCore","owner":"rcore-os","description":"Rust version of THU uCore OS. Linux compatible.","archived":false,"fork":false,"pushed_at":"2023-08-24T13:46:34.000Z","size":12486,"stargazers_count":3555,"open_issues_count":11,"forks_count":378,"subscribers_count":83,"default_branch":"master","last_synced_at":"2025-03-30T09:04:14.553Z","etag":null,"topics":["aarch64","mips","osdev","riscv","rust","x86-64"],"latest_commit_sha":null,"homepage":"","language":"Rust","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/rcore-os.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}},"created_at":"2018-04-02T07:29:49.000Z","updated_at":"2025-03-29T08:46:29.000Z","dependencies_parsed_at":"2022-07-11T19:24:35.835Z","dependency_job_id":"a0b8f58b-e740-453a-951a-d50be2ddf5f6","html_url":"https://github.com/rcore-os/rCore","commit_stats":null,"previous_names":[],"tags_count":1,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rcore-os%2FrCore","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rcore-os%2FrCore/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rcore-os%2FrCore/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rcore-os%2FrCore/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/rcore-os","download_url":"https://codeload.github.com/rcore-os/rCore/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":247399888,"owners_count":20932876,"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":["aarch64","mips","osdev","riscv","rust","x86-64"],"created_at":"2024-08-01T15:01:39.173Z","updated_at":"2025-04-05T20:34:09.522Z","avatar_url":"https://github.com/rcore-os.png","language":"Rust","readme":"# rCore\n\n[![CI](https://github.com/rcore-os/rCore/workflows/CI/badge.svg?branch=master)](https://github.com/rcore-os/rCore/actions)\n\nNO LONGER MAINTAINED. You can see recent developments in:\n\n- \u003chttps://github.com/rcore-os/zCore\u003e\n- \u003chttps://github.com/rcore-os/arceos\u003e\n- \u003chttps://github.com/rcore-os/rCore-Tutorial-Book-v3\u003e\n- \u003chttps://github.com/rcore-os/arceos-tutorial-book\u003e\n\nRust version of THU [uCore OS Plus](https://github.com/chyyuu/ucore_os_plus).\n\nGoing to be the next generation teaching operating system.\n\nSupported architectures and boards:\n\n* x86_64(Tier 1): QEMU, PC (i5/i7)\n* RISCV32/64(Tier 2): QEMU, HiFive Unleashed\n* AArch64(Tier 2): QEMU, Raspberry Pi 3B+\n* MIPS32(Tier 3): QEMU, [TrivialMIPS](https://github.com/Harry-Chen/TrivialMIPS)\n\n![demo](./docs/2_OSLab/os2atc/demo.png)\n\n## What's included\n\nrCore has the following features:\n\n* Linux compatible syscall interface: run Linux userspace programs\n* Network stack\n* Simple file system\n* Signal system\n* Async IO\n* Kernel module\n\n## Building\n\n### Environment\n\n* [Rust](https://www.rust-lang.org) toolchain\n* [QEMU](https://www.qemu.org) \u003e= 4.1.0\n* [musl-based GCC toolchains](https://musl.cc/) (only for building [user programs](https://github.com/rcore-os/rcore-user))\n\nSetup on Linux or macOS:\n\n```bash\n$ rustup component add rust-src llvm-tools-preview\n```\n\nOr use Docker container:\n\n```bash\n$ docker run -it -v $PWD:$PWD -w $PWD wangrunji0408/rcore\n```\n\n### How to run\n\n```bash\n$ git clone https://github.com/rcore-os/rCore.git --recursive\n$ cd rCore/user\n$ make sfsimg PREBUILT=1 ARCH=x86_64\n$ cd ../kernel\n$ make run ARCH=x86_64 LOG=info\n```\n\nSee [Makefile](kernel/Makefile) for more usages.\n\n## Maintainers\n\n| Module | Maintainer            |\n|--------|-----------------------|\n| x86_64 | @wangrunji0408        |\n| RISC-V  | @jiegec               |\n| AArch64 (Raspi3) | @equation314    |\n| MIPS   | @Harry_Chen @miskcoo   |\n| Memory, Process, File System | @wangrunji0408          |\n| Network with drivers | @jiegec |\n| GUI    | @equation314          |\n\n## History\n\nThis is a project of THU courses:\n\n* [Operating System (2018 Spring)](http://os.cs.tsinghua.edu.cn/oscourse/OS2018spring/projects/g11)\n* [Comprehensive Experiment of Computer System (2018 Summer)](http://os.cs.tsinghua.edu.cn/oscourse/csproject2018/group05)\n* [Operating System Train (2018 Autumn)](http://os.cs.tsinghua.edu.cn/oscourse/OsTrain2018)\n* [Operating System (2019 Spring)](http://os.cs.tsinghua.edu.cn/oscourse/OS2019spring/projects)\n* [Operating System Train (2019 Autumn)](http://os.cs.tsinghua.edu.cn/oscourse/OsTrain2019)\n* [Operating System (2020 Spring)](http://os.cs.tsinghua.edu.cn/oscourse/OS2020spring/projects)\n\n[Reports](./docs) and [Dev docs](https://rucore.gitbook.io/rust-os-docs/) (in Chinese)\n\nIt's based on [BlogOS](https://github.com/phil-opp/blog_os) , a demo project in the excellent tutorial [Writing an OS in Rust (First Edition)](https://os.phil-opp.com/first-edition/).\n\n## License\n\nThe source code is dual-licensed under MIT or the Apache License (Version 2.0).\n","funding_links":[],"categories":["Rust","Rust 程序设计","General Operating System","库"],"sub_categories":["网络服务_其他"],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Frcore-os%2FrCore","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Frcore-os%2FrCore","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Frcore-os%2FrCore/lists"}