💾 Archived View for darknesscode.xyz › linux › upgrade-debian.gmi captured on 2024-08-25 at 00:05:46. Gemini links have been rewritten to link to archived content
⬅️ Previous capture (2021-12-05)
-=-=-=-=-=-=-
Performing a full system upgrade in Debian, most of the time works without any problem. But make a full backup of your files if something goes wrong.
Edit the source.list file that contains Debian repositories
sudo vim /etc/apt/source.list
The repository list should looks like follow
deb http://deb.debian.org/debian bullseye main contrib non-free deb-src http://deb.debian.org/debian bullseye main contrib non-free deb http://deb.debian.org/debian-security/ bullseye-security main contrib non-free deb-src http://deb.debian.org/debian-security/ bullseye-security main contrib non-free deb http://deb.debian.org/debian bullseye-updates main contrib non-free deb-src http://deb.debian.org/debian bullseye-updates main contrib non-free
Close and save the changes in the source.list file, then refresh apt
sudo apt update
After that, performs a full system upgrade
sudo apt full-upgrade
Then run this commands to clean and remove everything that the system don't need anymore
sudo apt autoclean
sudo apt autoremove
At last reboot the system
sudo reboot
----------
----------
© DarknessCode