On August 14th, 2021, the Debian project finally released a stable version ofย Debian 11 Bullseyeย after over two years of development. It comes with many new features as most of the software in this version has been updated.
Furthermore, Debian 11 will receive support for the next five years just like any otherย Debianย stable version.
But letโs now focus on how you can upgrade from Debian 10 Buster to Debian 11 Bullseye. The process is simple and assumes you are running in the root account.
1. Backup Your System
Please make sure to back up your data. The Debian upgrades are usually safe, but there is always a chance something may go wrong. Therefore, you must have your valuable data safely copied to a backup location, so you can restore it if there are any problems or complications.
You can manually copy important files to a different device (second hard disk, USB drive, another computer on the network, etc.).
You can also create a complete system image of your current Debian installation with a dedicated system imaging software like CloneZilla. If you wish to use any other backup software, you are free to do so. Just make sure your data are placed in a safe location.
2. Update All Currently Installed Packages
Before upgrading from Debian 10 to Debian 11, itโs important to ensure your currently installed Debian 10 system is up to date. Run the following apt
commands in the terminal.
apt update
apt upgrade
apt full-upgrade
Now you can clean any leftover packages.
apt --purge autoremove
Then reboot your Debian 10 for the changes made to apply.
reboot
3. Check the Currently Installed Version
Now we will start by verifying that we are currently using the latest Debian 10.x point release.
The easiest way to check what Debian version you are running is to read the content of the /etc/debian_version
file.
cat /etc/debian_version
10.10
Code language: CSS (css)
An alternative way is by use of the lsb_release
command. You can use it to display LSB (Linux Standard Base) information about the Linux distribution.
lsb_release -a
Distributor ID: Debian
Description: Debian GNU/Linux 10 (buster)
Release: 10
Codename: buster
4. Replace Debian 10 with Debian 11 Repositories
The Debian software repositories are defined in the /etc/apt/sources.list
file and the /etc/apt/sources.list.d/
directory. Before starting the upgrade procedure, you must reconfigure them to point to the Debian 11 Bullseye repositories.
It is a good practice before updating the software repositories to backup the current software source list first.
mkdir ~/apt
cp /etc/apt/sources.list ~/apt
cp -r /etc/apt/sources.list.d/ ~/apt
Code language: PHP (php)
Now you can proceed and update the current Debian 10 Buster repository to point to Debian 11 Bullseye repositories.
sed -i 's/buster/bullseye/g' /etc/apt/sources.list
sed -i 's/buster/bullseye/g' /etc/apt/sources.list.d/*
Code language: PHP (php)
The commands shown above will replace the buster
keyword with bullseye
in software repositories files.
In Debian 11 Bullseye, the security suite is now named bullseye-security
instead of bullseye/updates
. So you need to locate the following debian-security
lines in the /etc/apt/sources.list
file:
deb http://security.debian.org/debian-security bullseye/updates main
deb-src http://security.debian.org/debian-security bullseye/updates main
Code language: JavaScript (javascript)
And replace them with these:
deb https://deb.debian.org/debian-security/ bullseye-security main
deb-src https://deb.debian.org/debian-security/ bullseye-security main
Code language: JavaScript (javascript)
The final sources.list
file should look like the ones below.
cat /etc/apt/sources.list
Code language: PHP (php)
deb http://deb.debian.org/debian bullseye main
deb-src http://deb.debian.org/debian bullseye main
deb http://security.debian.org/debian-security/ bullseye-security main
deb-src http://security.debian.org/debian-security/ bullseye-security main
deb http://deb.debian.org/debian bullseye-updates main
deb-src http://deb.debian.org/debian bullseye-updates main
Code language: JavaScript (javascript)
5. Perform a Minimal System Upgrade First
At this point, your Debian 10 system is ready for the upgrade. The next step is to update the repository to let the system recognize the newly added repo URLs.
apt update
In some cases, doing the full upgrade might remove the large number of packages you want to keep. So the Debian developers recommend a two-part upgrade process to avoid the removal of the packages.
- Part 1: Minimal system upgrade
- Part 2: Full system upgrade
In the minimal upgrade, you will update and upgrade all the available packages without installing or removing any other packages.
To perform the minimal system upgrade first, run the command shown below.
apt upgrade --without-new-pkgs
Code language: JavaScript (javascript)
Keep an eye on the screen. If the apt-listchanges
package is installed, it will show important information about upgraded packages in a pager after downloading the packages.
Press q
after reading to exit the pager and continue the upgrade.
In addition, you will be asked if you want to restart services without asking.
You will also be asked what you want to do with a specific configuration file. If youโre unsure what to do, go with defaults by pressing Enter
key.
6. Upgrade Debian 10 to Debian 11
Once the minimal system upgrade is finished, run the following command to begin the full upgrade.
apt full-upgrade
Do not leave the system unattended because the upgrade process requires various inputs.
You can reboot the system once the Debian 11 upgrade process is completed.
reboot
Log in to the system and check your Debian version.
cat /etc/debian_version
11.0
Code language: CSS (css)
Or as an alternative way by using the lsb_release
command:
lsb_release -a
Distributor ID: Debian
Description: Debian GNU/Linux 11 (bullseye)
Release: 11
Codename: bullseye
Congratulations! You have successfully upgraded your system from Debian 10 Buster to Debian 11 Bullseye. Your system will now be running Debian 11 Bullseye.
7. Cleaning up Debian 10 Obsolete Packages
It is a good idea to clean your newly upgraded Debian 11 Bullseye system by removing old obsolete packages that are now leftover from your successful upgrade and are not needed anymore.
apt --purge autoremove
apt autoclean
Conclusion
The above tutorial taught you how to upgrade Debian 10 Buster to Debian 11 Bullseye. Now you can enjoy the latest packages and hardware support provided by the latest Debian release.
We have tried to make this tutorial as simple as possible. Thanks for using it.
For additional help or useful information, we recommend you to check the official Debian upgrade documentation.