Confused on Steam Play and Proton? Be sure to check out our guide.
Debian - wine - steam
Page: «3/3
  Go to:
Shmerl Nov 4, 2018
Here is my upgrade script:

#!/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
Shmerl Nov 4, 2018
Hm, the forum totally messes up whitespace in code tags.

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
Shmerl Nov 4, 2018
Quoting: razing32A bit worried about the recommendation i got during dist upgrade to run "apt autoremove" as there are quite a few packages there.

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.
tuxintuxedo Nov 4, 2018
A 32 bit wineprefix shouldn't have "Program Files (x86)" directory, only "Program Files". So something is fishy.
Note, that a prefix is different from the package architecture.
razing32 Nov 4, 2018
Quoting: ShmerlHere is my upgrade script:

#!/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

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
razing32 Nov 4, 2018
Quoting: Shmerl
Quoting: razing32A bit worried about the recommendation i got during dist upgrade to run "apt autoremove" as there are quite a few packages there.

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.

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.
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!
Login / Register


Or login with...
Sign in with Steam Sign in with Google
Social logins require cookies to stay logged in.