Broken Packages Fix Problem (For Wine)

The problem is that Wine now depends on libfaudio0, but Ubuntu versions prior to 19.10 don't include it in the standard repositories.

The link to the Winehq forum page with directions on how to install the packages is: https://forum.winehq.org/viewtopic.php?f=8&t=32192.

For Ubuntu 18.04 do:

wget https://download.opensuse.org/repositories/Emulators:/Wine:/Debian/xUbuntu_18.04/amd64/libfaudio0_19.07-0~bionic_amd64.deb
wget https://download.opensuse.org/repositories/Emulators:/Wine:/Debian/xUbuntu_18.04/i386/libfaudio0_19.07-0~bionic_i386.deb
sudo dpkg -i libfaudio0_19.07-0~bionic_amd64.deb libfaudio0_19.07-0~bionic_i386.deb

Then you should be able to update and upgrade as you would normally.


late answer

I had a similar problem: What I did:

I remove all "wine" ppa using "Software and updates" tool in ubuntu / kubuntu. Then, i followed the guide here: install latest wine or here.

In my case, i added

sudo apt-add-repository 'deb https://dl.winehq.org/wine-builds/ubuntu/ xenial main'

and no other repository. Then...

sudo apt update && sudo apt install --install-recommends winehq-stable

Sincerely, Elias Tsolis


Do 1:

 sudo apt-add-repository --remove 'deb https://download.opensuse.org/repositories/Emulators:/Wine:/Debian/Ubuntu_18.10_standard ./'

Do 2:

 wget -nc https://dl.winehq.org/wine-builds/Release.key

 sudo apt-key add Release.key

 sudo apt-add-repository https://dl.winehq.org/wine-builds/ubuntu/

3:apt-get update

4:Then install your preferred wine

sudo apt-get install --install-recommends winehq-stable

sudo apt-get install --install-recommends winehq-devel

sudo apt-get install --install-recommends winehq-staging

Tell me if it works!