{"id":48888718,"url":"https://github.com/sorubedo/obedur-os","last_synced_at":"2026-04-16T06:10:33.284Z","repository":{"id":339323352,"uuid":"1161440565","full_name":"sorubedo/obedur-os","owner":"sorubedo","description":null,"archived":false,"fork":false,"pushed_at":"2026-04-06T13:03:13.000Z","size":180,"stargazers_count":4,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2026-04-06T15:06:48.469Z","etag":null,"topics":["atomic","bluebuild","bluebuild-image","custom-image","image-based","immutable","linux","linux-custom-image","oci","oci-image","operating-system"],"latest_commit_sha":null,"homepage":"https://sorubedo.github.io/obedur-docs/","language":"Shell","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/sorubedo.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":".github/CODEOWNERS","security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2026-02-19T05:25:40.000Z","updated_at":"2026-04-06T13:03:17.000Z","dependencies_parsed_at":"2026-04-06T15:03:30.575Z","dependency_job_id":null,"html_url":"https://github.com/sorubedo/obedur-os","commit_stats":null,"previous_names":["sorubedo/obedur-os"],"tags_count":0,"template":false,"template_full_name":"blue-build/template","purl":"pkg:github/sorubedo/obedur-os","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/sorubedo%2Fobedur-os","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/sorubedo%2Fobedur-os/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/sorubedo%2Fobedur-os/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/sorubedo%2Fobedur-os/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/sorubedo","download_url":"https://codeload.github.com/sorubedo/obedur-os/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/sorubedo%2Fobedur-os/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":31873609,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-15T15:24:51.572Z","status":"online","status_checked_at":"2026-04-16T02:00:06.042Z","response_time":69,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"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":["atomic","bluebuild","bluebuild-image","custom-image","image-based","immutable","linux","linux-custom-image","oci","oci-image","operating-system"],"created_at":"2026-04-16T06:10:32.011Z","updated_at":"2026-04-16T06:10:33.279Z","avatar_url":"https://github.com/sorubedo.png","language":"Shell","funding_links":[],"categories":[],"sub_categories":[],"readme":"# obedur-os \u0026nbsp; [![bluebuild build badge](https://github.com/sorubedo/obedur-os/actions/workflows/build.yml/badge.svg)](https://github.com/sorubedo/obedur-os/actions/workflows/build.yml)\n\n## 镜像选择\n\n在进行系统变基或安装之前，请根据您的显卡硬件配置选择合适的镜像：\n\n| 镜像名称 | 适用说明 |\n| :--- | :--- |\n| **`obedur-os`** | 标准版。适用于 Intel 或 AMD 显卡。 |\n| **`obedur-os-nvidia`** | 包含传统的 NVIDIA 闭源专有驱动。 |\n| **`obedur-os-nvidia-open`** | 包含 NVIDIA 官方的开源内核模块驱动 (Open Kernel Modules)。 |\n\n---\n\n## 安装\n\n\u003e [!WARNING]\n\u003e [这是一项实验性功能](https://www.fedoraproject.org/wiki/Changes/OstreeNativeContainerStable)，请自行评估风险并尝试。\n\n要将现有的 Fedora Atomic 系统变基 (rebase) 到最新构建，您可以选择以下两种方式之一。**强烈推荐使用 `bootc` 方法**，因为它提供了更现代的容器原生系统管理体验。\n\n*(注：以下命令中的 `obedur-os` 为标准镜像示例。如果您使用的是 NVIDIA 显卡，请务必将其替换为表中对应的镜像名称)*\n\n### 方法一：使用 bootc (推荐)\n\n这是管理容器原生系统（Bootable Container）的首选方法。\n\n1. **变基到未签名的镜像**，以安装正确的签名密钥和策略：\n   ```bash\n   bootc switch ghcr.io/sorubedo/obedur-os:latest\n   ```\n2. **重启**以完成变基：\n   ```bash\n   systemctl reboot\n   ```\n3. **切换到强制签名验证**的镜像，确保安全性：\n   ```bash\n   bootc switch --enforce-container-sigpolicy ghcr.io/sorubedo/obedur-os:latest\n   ```\n4. **再次重启**以完成安装：\n   ```bash\n   systemctl reboot\n   ```\n\n---\n\n### 方法二：使用 rpm-ostree (传统)\n\n如果您习惯传统的原子更新命令，可以使用以下步骤：\n\n1. **变基到未签名的镜像**，以安装正确的签名密钥和策略：\n  ```bash\n  rpm-ostree rebase ostree-unverified-registry:ghcr.io/sorubedo/obedur-os:latest\n  ```\n2. **重启**以完成变基：\n  ```bash\n  systemctl reboot\n  ```\n3. **然后变基到已签名的镜像**，如下所示：\n  ```bash\n  rpm-ostree rebase ostree-image-signed:docker://ghcr.io/sorubedo/obedur-os:latest\n  ```\n4. **再次重启**以完成安装：\n  ```bash\n  systemctl reboot\n  ```\n\n\u003e [!NOTE]\n\u003e `latest` 标签会自动指向最新的构建。该构建将始终使用 `recipe.yml` 中指定的 Fedora 版本，因此您不会意外更新到下一个主要版本。\n\n## ISO 镜像\n\n如果在 Fedora Atomic 上构建，您可以按照[此处](https://blue-build.org/learn/universal-blue/#fresh-install-from-an-iso)提供的说明生成离线 ISO。遗憾的是，由于文件体积较大，这些 ISO 无法在 GitHub 上免费分发，因此对于公开项目，必须使用其他平台进行托管。\n\n## 验证\n\n这些镜像使用 [Sigstore](https://www.sigstore.dev/) 的 [cosign](https://github.com/sigstore/cosign) 进行了签名。您可以通过从本仓库下载 `cosign.pub` 文件并运行以下命令来验证签名：\n\n```bash\ncosign verify --key cosign.pub ghcr.io/sorubedo/obedur-os\n```\n\n---\n\n## 模块说明与致谢\n\n本镜像中内置的 **dracut-numlock** 模块（用于在启动时自动开启小键盘数字锁）直接提取自开源仓库：[ChrTall/dracut-numlock](https://github.com/ChrTall/dracut-numlock)。感谢原作者的开源贡献！\n\n本镜像中使用的 **custom-kernel** 模块（用于安装 CachyOS 内核）是从 [Origami-Linux](https://gitlab.com/origami-linux/images) 项目移植而来。感谢 Origami 社区的开源精神！\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsorubedo%2Fobedur-os","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fsorubedo%2Fobedur-os","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsorubedo%2Fobedur-os/lists"}