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: 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!
Login / Register
- Steam Controller 2 is apparently a thing and being 'tooled for a mass production' plus a new VR controller
- Dungeon Clawler will grab hold of your free time now it's in Early Access, plus keys to give away
- Monster catcher Cassette Beasts adds Steam Workshop support and a new battle mode
- Steam getting proper Season Pass support with clearer guidelines and refunds for cancellations
- FromSoftware owner Kadokawa confirms Sony sent an 'initial letter of intent' to acquire them
- > See more over 30 days here
-
PlaytronOS Alpha 2 brings expanded NVIDIA support, more…
- pleasereadthemanual -
Action-platformer metroidvania Janosik 2 will be a 'big…
- Pikolo -
2K Launcher is finally no more - that's at least one pu…
- Marlock -
2K Launcher is finally no more - that's at least one pu…
- Kuduzkehpan -
GOG's Black Friday Sale is live now with some big disco…
- Liam Dawe - > See more comments
- What have you been listening to?
- Linux_Rocks - More updates - social media related
- Klaas - What do you want to see on GamingOnLinux?
- Linux_Rocks - Our own anti-cheat list
- Liam Dawe - Weekend Players' Club 11/22/2024
- Liam Dawe - See more posts
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
You need to analyze that list, but it's normally legit. Packages change dependencies, so obsolete ones can to be removed. However don't forget purging configs (apt-get autoremove --purge), otherwise your system will be very cluttered with garbage.
And if suggested remove list looks suspicious (like removing whole KDE or something), then analyze the issue further.
View PC info
Note, that a prefix is different from the package architecture.
View PC info
Nice script :)
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
View PC info
Will dig into it , but for now , it seems i have wine working fine.
Can take care of the clutter later and do a purge if needed and reisntall the packages if i accidentally remove them.