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
- Nexus Mods retire their in-development cross-platform app to focus back on Vortex
- Windows compatibility layer Wine 11 arrives bringing masses of improvements to Linux
- GOG plan to look a bit closer at Linux through 2026
- Hytale has arrived in Early Access with Linux support
- Valve reveal all the Steam events scheduled for 2026
- > See more over 30 days here
- Weekend Players' Club 2026-01-16
- whizse - Venting about open source security.
- rcrit - Away later this week...
- Liam Dawe - Welcome back to the GamingOnLinux Forum
- simplyseven - A New Game Screenshots Thread
- JohnLambrechts - 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
View PC info
#!/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
View PC info
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
View PC info
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.