https://github.com/ScatteredCognition/os-images
https://github.com/ScatteredCognition/os-images
atomic bluebuild bluebuild-image custom-image image-based immutable linux linux-custom-image oci oci-image operating-system
Last synced: 5 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/ScatteredCognition/os-images
- Owner: faeizmahrus
- License: apache-2.0
- Created: 2024-12-08T05:14:34.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2025-01-24T15:23:08.000Z (about 1 year ago)
- Last Synced: 2025-01-24T15:32:17.861Z (about 1 year ago)
- Topics: atomic, bluebuild, bluebuild-image, custom-image, image-based, immutable, linux, linux-custom-image, oci, oci-image, operating-system
- Language: Shell
- Size: 8.72 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
- Codeowners: .github/CODEOWNERS
Awesome Lists containing this project
README
# os-images [](https://github.com/faeizmahrus/os-images/actions/workflows/build.yml)
My personal OCI container images.
Instructions for ISO generation: [here](https://blue-build.org/learn/universal-blue/#fresh-install-from-an-iso).
Verify the image signature by downloading the `cosign.pub` file from this repo and running the following command:
```bash
cosign verify --key cosign.pub ghcr.io/faeizmahrus/kinoite-mahrus
```
### For distrobox images: [distrobox-images-boxkit](https://github.com/faeizmahrus/distrobox-images-boxkit)
## Image list
- ### [kinoite-mahrus](recipes/kinoite-mahrus.yml)
Fedora Kinoite image with the RPMFusion repos, Brave Browser, entire Noto font family, OpenBangla Keyboard and many other things preinstalled.
- ### [silverblue-mahrus](recipes/kinoite-mahrus.yml)
Fedora Silverblue image with the RPMFusion repos, Brave Browser, entire Noto font family, OpenBangla Keyboard and many other things preinstalled.
## Installing the images
To rebase an existing atomic Fedora installation to the latest build:
- First, rebase to the unsigned image to get the proper signing keys and policies installed:
```
# Fedora Kinoite
rpm-ostree rebase ostree-unverified-registry:ghcr.io/faeizmahrus/kinoite-mahrus:latest
# Fedora Silverblue
rpm-ostree rebase ostree-unverified-registry:ghcr.io/faeizmahrus/silverblue-mahrus:latest
```
- Reboot to complete the rebase:
```
systemctl reboot
```
- Finally, rebase to the signed image:
```
# Fedora Kinoite
rpm-ostree rebase ostree-image-signed:docker://ghcr.io/faeizmahrus/kinoite-mahrus:latest
# Fedora Silverblue
rpm-ostree rebase ostree-image-signed:docker://ghcr.io/faeizmahrus/silverblue-mahrus:latest
```
- Reboot again to complete the installation
```
systemctl reboot
```
The `latest` tag will automatically point to the latest build.
## BlueBuild
See the [BlueBuild docs](https://blue-build.org/how-to/setup/) for quick setup instructions for setting up your own repository based on this template.