Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: update site for info about Ubuntu Oracular support #56

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 6 additions & 2 deletions content/docs/reference/Releases/regolith-3.2-release-notes.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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

Expand Down
35 changes: 35 additions & 0 deletions content/docs/using-regolith/install.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down