From bf433cd98d2b88caf55682f8eaae64121845e963 Mon Sep 17 00:00:00 2001 From: Jed Date: Tue, 2 Jun 2026 19:42:45 -0400 Subject: [PATCH 1/3] Revise installation instructions for Fedora Atomic Updated installation instructions for Fedora Atomic derivatives, moving Aurora to be inline with Bluefin as it hasn't shipped Terra for over six months. Also slightly tweaked the install script, removing sudo from the layering command as it's not necessary, and replacing pkexec with run0 to accommodate for SecureBlue (or any other image that uses run0) --- src/content/docs/usage/installing.mdx | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/src/content/docs/usage/installing.mdx b/src/content/docs/usage/installing.mdx index 1413bfc..ed80f58 100644 --- a/src/content/docs/usage/installing.mdx +++ b/src/content/docs/usage/installing.mdx @@ -34,13 +34,13 @@ Nobara already comes with Terra out of the box, simply use one of their graphica On Atomic editions of Fedora, run the following command: ```sh -curl -fsSL https://raw.githubusercontent.com/terrapkg/packages/f$(rpm --eval '%{fedora}')/anda/terra/release/terra.repo | pkexec tee /etc/yum.repos.d/terra.repo -sudo rpm-ostree install terra-release terra-gpg-keys +curl -fsSL https://raw.githubusercontent.com/terrapkg/packages/f$(rpm --eval '%{fedora}')/anda/terra/release/terra.repo | run0 tee /etc/yum.repos.d/terra.repo +rpm-ostree install terra-release terra-gpg-keys ``` -### Bazzite and Aurora +### Bazzite -Bazzite and Aurora come with Terra, but disable it. +Bazzite comes with Terra, but disables it. Edit `/etc/yum.repos.d/terra.repo` and change `enabled=0` to `enabled=1` @@ -48,14 +48,14 @@ Do this again for `/etc/yum.repos.d/terra-extras.repo` Then you can simply `rpm-ostree` away! -### Bluefin +### Bluefin and Aurora -Bluefin no longer comes with Terra, and disables package layering by default. +Bluefin and Aurora no longer come with Terra, and disable package layering by default. To enable layering, edit `/etc/rpm-ostreed.conf` and set `LockLayering` to `false`. From ab14384ab428db32e1479e427cdf951742af9dd0 Mon Sep 17 00:00:00 2001 From: Jed Date: Tue, 2 Jun 2026 20:25:07 -0400 Subject: [PATCH 2/3] Reverted run0 in the curl script, added SecureBlue section --- src/content/docs/usage/installing.mdx | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/src/content/docs/usage/installing.mdx b/src/content/docs/usage/installing.mdx index ed80f58..5642666 100644 --- a/src/content/docs/usage/installing.mdx +++ b/src/content/docs/usage/installing.mdx @@ -34,7 +34,7 @@ Nobara already comes with Terra out of the box, simply use one of their graphica On Atomic editions of Fedora, run the following command: ```sh -curl -fsSL https://raw.githubusercontent.com/terrapkg/packages/f$(rpm --eval '%{fedora}')/anda/terra/release/terra.repo | run0 tee /etc/yum.repos.d/terra.repo +curl -fsSL https://raw.githubusercontent.com/terrapkg/packages/f$(rpm --eval '%{fedora}')/anda/terra/release/terra.repo | pkexec tee /etc/yum.repos.d/terra.repo rpm-ostree install terra-release terra-gpg-keys ``` @@ -61,6 +61,10 @@ To enable layering, edit `/etc/rpm-ostreed.conf` and set `LockLayering` to `fals Then follow the installation instructions for Fedora Atomic. +### SecureBlue + +Follow the installation instructions for Fedora Atomic, but replace `pkexec` in the curl script with `run0`. + ## Enterprise Linux Terra EL contains a subset of packages for RHEL 10 and its derivatives. From 0407762e0f6fc6a1d6ee0e765f582b06895bd0cf Mon Sep 17 00:00:00 2001 From: Jed Date: Tue, 2 Jun 2026 21:05:44 -0400 Subject: [PATCH 3/3] Update src/content/docs/usage/installing.mdx Co-authored-by: renner <80410025+renner0e@users.noreply.github.com> --- src/content/docs/usage/installing.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/content/docs/usage/installing.mdx b/src/content/docs/usage/installing.mdx index 5642666..6d272f5 100644 --- a/src/content/docs/usage/installing.mdx +++ b/src/content/docs/usage/installing.mdx @@ -50,7 +50,7 @@ Then you can simply `rpm-ostree` away! ### Bluefin and Aurora -Bluefin and Aurora no longer come with Terra, and disable package layering by default. +Bluefin and Aurora no longer come with Terra, and heavily discourage package layering as it can halt system updates To enable layering, edit `/etc/rpm-ostreed.conf` and set `LockLayering` to `false`.