How to upgrade Debian 9 to Debian 10

To upgrade Debian 9 to Debian 10, first make sure your system is uptodate.

apt update && apt upgrade -y

Edit file /etc/apt/sources.list. Find all occurance of “stretch” and replace it with “buster”.

sed -i 's/stretch/buster/g' /etc/apt/sources.list

Or use following

deb http://cloudfront.debian.net/debian/ buster main non-free contrib
deb-src http://cloudfront.debian.net/debian/ buster main non-free contrib

deb http://security.debian.org/debian-security buster/updates main contrib non-free
deb-src http://security.debian.org/debian-security buster/updates main contrib non-free

Now update the system

apt update && apt upgrade -y

run dist-upgrade

apt dist-upgrade -y

During the upgrade, you will be asked to replace some of the configuration files. If this is a fresh server, you can always replace these files with newer version. If your server have these files modified, you should be careful as replacing these files will lose the changes you made.

Debian 10 upgrade

Reboot the server.

reboot

After reboot, you can verify server is running Debian 10 with commands

lsb_release -a
hostnamectl

Debian 10

Need help with Linux Server or WordPress? We can help!

Leave a Reply

Your email address will not be published. Required fields are marked *