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
- Oh dear - ARC Raiders was logging your private Discord chats [updated]
- Many more US states are planning or already have operating system age verification laws
- Xbox "Project Helix" confirmed to run Xbox and PC games - competition for the Steam Machine
- Transport Fever 3 confirmed for Linux and macOS support
- Slay the Spire 2 is out now in Early Access with online co-op
- > See more over 30 days here
Recently Updated
- Do you miss LaunchBox/Playnite on Linux?
- Dark574 - Recommendations for portable monitor for Steam Deck?
- childermass - Shop Crush - Psychological Horror Thrift Sim with Literal Illusio…
- hollowlimb - Introduce Yourself!
- hollowlimb - Proton/Wine Games Locking Up
- Caldathras - 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.