this post was submitted on 10 Jun 2023
34 points (100.0% liked)
unix like operating system lovers
2206 readers
1 users here now
This is a community that is only for nerds jk. everyone who doesn't scare when seeing UNIX terminal welcome! rules:
- don't make comments that branch out from the main topic too much, at least please somehow relate to it.
- retro operating systems, e.g. discussion about them, is strictly forbidden, please make a retro community instead.
- please be nice for others.
founded 2 years ago
MODERATORS
you are viewing a single comment's thread
view the rest of the comments
view the rest of the comments
You need to update your apt sources file. Here is the process. Run the following commands as root. Use
sudo -s
first to avoid having to prefix every command with sudo. This assumes you are running bullseye. If not you need to update to bullseye first.Update your current installation first:
apt udpate
apt full-upgrade -y
Then upgrade:
sed -i 's/bullseye/bookworm/g' /etc/apt/sources.list
export LC_ALL=C
apt update
apt upgrade --without-new-pkgs -y
apt full-upgrade -y
Then reboot.
So I had actually already done this when I switched to bookworm when it wasn't stable.
I am curious: what does setting LC_ALL do? I'm familiar with all the other commands though
I followed the instructions from here and it was included so I left it: https://wiki.debian.org/DebianEdu/Documentation/Bookworm/Upgrades
Someone much smarter than me explains it here: https://unix.stackexchange.com/a/87763
Great resources, thanks!