where can I get WINE 6 for DEBIAN

Questions about Wine on Linux
Locked
lawrencek
Level 1
Level 1
Posts: 7
Joined: Sun Jan 31, 2021 5:47 pm

where can I get WINE 6 for DEBIAN

Post by lawrencek »

where can I get WINE 6 for DEBIAN? The linksand the standard install only give me WINE4/

Lawrence
User avatar
dimesio
Moderator
Moderator
Posts: 13367
Joined: Tue Mar 25, 2008 10:30 pm

Re: where can I get WINE 6 for DEBIAN

Post by dimesio »

What version of Debian? We only have 6.0 packages for buster and bullseye. https://wiki.winehq.org/Debian
lawrencek
Level 1
Level 1
Posts: 7
Joined: Sun Jan 31, 2021 5:47 pm

Re: where can I get WINE 6 for DEBIAN

Post by lawrencek »

I have Debian 10, recently downloaded.
I don't know its name

Lawrence
jkfloris
Level 12
Level 12
Posts: 3201
Joined: Thu Aug 14, 2014 10:10 am

Re: where can I get WINE 6 for DEBIAN

Post by jkfloris »

Debian 10 is Buster

You can install Wine 6.0 with:

Code: Select all

sudo dpkg --add-architecture i386
wget -nc https://dl.winehq.org/wine-builds/winehq.key
sudo apt-key add winehq.key
echo "deb https://dl.winehq.org/wine-builds/debian/ buster main" | sudo tee /etc/apt/sources.list.d/winehq.list
sudo apt update
wget -nc https://download.opensuse.org/repositories/Emulators:/Wine:/Debian/Debian_10/amd64/libfaudio0_20.01-0~buster_amd64.deb
wget -nc https://download.opensuse.org/repositories/Emulators:/Wine:/Debian/Debian_10/i386/libfaudio0_20.01-0~buster_i386.deb
sudo dpkg -i libfaudio0_20.01-0~buster_amd64.deb libfaudio0_20.01-0~buster_i386.deb
sudo apt install -f
sudo apt install --install-recommends winehq-stable
Locked