diff --git a/content/docs/reference/Releases/regolith-3.2-release-notes.md b/content/docs/reference/Releases/regolith-3.2-release-notes.md index 96a53c3b..8664cab4 100644 --- a/content/docs/reference/Releases/regolith-3.2-release-notes.md +++ b/content/docs/reference/Releases/regolith-3.2-release-notes.md @@ -8,11 +8,11 @@ description: > ## Regolith 3.2 Release Notes -Regolith 3.2 is a minor release focusing on Ubuntu 24.04 support, init system overhaul, and bug fixes. +Regolith 3.2 is a minor release focusing on Ubuntu 24.04 & 24.10 support, init system overhaul, and bug fixes. ### Features -* Ubuntu 24.04 (Noble) support +* Ubuntu 24.04 (Noble), Ubuntu 24.10 (Oracular) support * `regolith-control-center` rebased from GNOME 46 (for supported releases) * Sway session promoted from `beta` to `stable` status * Overhaul of X11 and Wayland session initialization @@ -24,6 +24,10 @@ Regolith 3.2 is a minor release focusing on Ubuntu 24.04 support, init system ov * Debian 11 (Bullseye) * Deprecating support for Wayland session on Debian 12 (Bookworm) due to out-of-date build dependencies +### Known Issues + + * `regolith-control-center` is not available in Ubuntu 24.10. + ### Installation Instructions diff --git a/content/docs/using-regolith/install.md b/content/docs/using-regolith/install.md index ffb20f35..223b0a45 100644 --- a/content/docs/using-regolith/install.md +++ b/content/docs/using-regolith/install.md @@ -15,6 +15,41 @@ If you're upgrading from an earlier version of Regolith, you may be interested i ### Ubuntu {{< tabs "ubuntu-tabs" >}} +{{< tab "Ubuntu 24.10" >}} + +Regolith can be installed as system packages. This makes updating and removing easier and more consistent. The following steps describe how +to configure your system to read packages from the Regolith package repository and install the desktop package. + +1. Register the Regolith public key to your local `apt`: + + ```console + wget -qO - https://regolith-desktop.org/regolith.key | \ + gpg --dearmor | sudo tee /usr/share/keyrings/regolith-archive-keyring.gpg > /dev/null + ``` + +1. Add the repository URL to your local `apt`: + + ```console + echo deb "[arch=amd64 signed-by=/usr/share/keyrings/regolith-archive-keyring.gpg] \ + https://regolith-desktop.org/release-3_2-ubuntu-oracular-amd64 oracular main" | \ + sudo tee /etc/apt/sources.list.d/regolith.list + ``` + +1. Update `apt` and install Regolith + + ```console + sudo apt update + sudo apt install regolith-desktop regolith-session-flashback regolith-look-lascaille + ``` +1. System Restart + +The login manager will need to be restarted for the new desktop session to be recognized. The easiest way of restarting it is to reboot your system. + +{{< hint info >}} +Replace `amd64` with `arm64` in the two places in the above line to install on ARM-based systems. +{{< /hint >}} + +{{< /tab >}} {{< tab "Ubuntu 24.04" >}} Regolith can be installed as system packages. This makes updating and removing easier and more consistent. The following steps describe how