Skip to content

Instantly share code, notes, and snippets.

@macknilan
Last active April 22, 2020 17:27
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save macknilan/770b3eba4e86dac43c3e1cab9e0b8cec to your computer and use it in GitHub Desktop.
Save macknilan/770b3eba4e86dac43c3e1cab9e0b8cec to your computer and use it in GitHub Desktop.
Install Wine Debian Buster

INSTALL WINE

THESE COMMANDS SHOULD DO IT, ASSUMING YOU'RE ON BUSTER

sudo apt update
sudo apt install software-properties-common

sudo dpkg --add-architecture i386

wget -nc https://dl.winehq.org/wine-builds/winehq.key
sudo apt-key add winehq.key
rm winehq.key

wget -nc https://download.opensuse.org/repositories/Emulators:/Wine:/Debian/Debian_10/Release.key
sudo apt-key add Release.key
rm Release.key

sudo apt-add-repository 'deb https://dl.winehq.org/wine-builds/debian/ buster main'
sudo apt-add-repository 'deb https://download.opensuse.org/repositories/Emulators:/Wine:/Debian/Debian_10/ ./'

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

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment