While you're here, please consider supporting GamingOnLinux on:
Reward Tiers:
Patreon. Plain Donations:
PayPal.
This ensures all of our main content remains totally free for everyone! Patreon supporters can also remove all adverts and sponsors! Supporting us helps bring good, fresh content. Without your continued support, we simply could not continue!
You can find even more ways to support us on this dedicated page any time. If you already are, thank you!
Reward Tiers:
This ensures all of our main content remains totally free for everyone! Patreon supporters can also remove all adverts and sponsors! Supporting us helps bring good, fresh content. Without your continued support, we simply could not continue!
You can find even more ways to support us on this dedicated page any time. If you already are, thank you!
Login / Register
- Bazzite Linux 44 lands for desktop gamers and it's a big release
- Steam Beta gets battery indicator for wireless gamepads as the new Steam Controller nears
- CachyOS April 2026 release brings a new package manager and even more optimizations
- Denuvo DRM reportedly fully cracked open, 2K apparently fights back with online checks
- Canonical developer lays out some AI plans for Ubuntu Linux
- > See more over 30 days here
- Why most people are approaching the xz-attack wrong.
- LoudTechie - Lutris alternatives
- sourpuz - Welcome back to the GamingOnLinux Forum
- sourpuz - Shop Crush - Psychological Horror Thrift Sim with Literal Illusio…
- hollowlimb - Steam achievement conundrum
- GustyGhost - See more posts
How to setup OpenMW for modern Morrowind on Linux / SteamOS and Steam Deck
How to install Hollow Knight: Silksong mods on Linux, SteamOS and Steam Deck
#!/bin/bash
function assert_rc() {
local rc=$1
if (($rc != 0)); then
echo "Aborting on non zero error code: ${rc}!"
exit $rc
fi
}
upgrade_options='-o dpkg::progress-fancy=1 -o apt::color=1'
if (( $# == 1 )); then
upgrade_options="${upgrade_options} -o acquire::http::dl-limit=${1}"
fi
sudo apt-get update
assert_rc $?
aptitude search ~U -F"%c%M %p# %15v# %15V# %d"
sudo apt-get $upgrade_options dist-upgrade
sudo apt-get $upgrade_options autoremove --purge
In short, to upgrade / update your Debian testing, use this sequence:
sudo apt-get update
sudo apt-get dist-upgrade
sudo apt-get autoremove --purge
And if suggested remove list looks suspicious (like removing whole KDE or something), then analyze the issue further.
Note, that a prefix is different from the package architecture.
I went with the instructions on the debian page for upgrading from stable to testing
Basically replacing the distro name (stretch in my case) with testing and uncommenting the security patches
I then did update , upgrade and dist-upgrade
Can take care of the clutter later and do a purge if needed and reisntall the packages if i accidentally remove them.