Skip to content

Commit

Permalink
fix typo, inconsistencies with bookworm, bullseye (#144)
Browse files Browse the repository at this point in the history
* fix typo, inconsistencies with stretch/buster

* remove inconsistent supported distributions, replace with bookworm update
  • Loading branch information
mchangrh authored Jul 16, 2023
1 parent ba199f3 commit 1fabdb0
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions docs/guides/dist-upgrade.md
Original file line number Diff line number Diff line change
Expand Up @@ -81,15 +81,15 @@ Let's take the scenario where your server was delivered with Debian 11 (bullseye
bullseye > bookworm
```

Thus, we need to replace all mention of stretch with buster in the file `/etc/apt/sources.list`.
Thus, we need to replace all mention of bullseye with bookworm in the file `/etc/apt/sources.list`.

You can either `sudo nano /etc/apt/sources.list` and change all instances of `stretch` to `buster` or issue the following command:
You can either `sudo nano /etc/apt/sources.list` and change all instances of `bullseye` to `bookworm` or issue the following command:

```bash main
sed -i 's/bullseye/bookworm/g' /etc/apt/sources.list
```

This simple `sed` command simply states: find the word stretch, replace it with buster in the file `/etc/apt/sources.list.
This simple `sed` command simply states: find the word bullseye, replace it with bookworm in the file `/etc/apt/sources.list`.

Once our sources have been updated, it's time to grab new manifests and update:

Expand Down Expand Up @@ -173,6 +173,6 @@ Depending on the application and the amount of configuration you have done, it m

#### Other packages

Distribution upgrades haven't been tested rigorously. It's entirely possible other packages may have broken during the upgrade. You'll need to start doing your own troubleshooting here if anything else is broken. You can consult [the Troubleshooting guide](/guides/troubleshooting) for a quick start. You can find out if any of your systemd services are failing to start with `systemctl list-units --failed`. If there are failed units there, you can start debugging with `systemctl status <failed unit>`. However, you're on your own form here.
Distribution upgrades haven't been tested rigorously. It's entirely possible other packages may have broken during the upgrade. You'll need to start doing your own troubleshooting here if anything else is broken. You can consult [the Troubleshooting guide](/guides/troubleshooting) for a quick start. You can find out if any of your systemd services are failing to start with `systemctl list-units --failed`. If there are failed units there, you can start debugging with `systemctl status <failed unit>`. However, you're on your own from here.


0 comments on commit 1fabdb0

Please sign in to comment.