Skip to content

Instantly share code, notes, and snippets.

@dapize
Last active July 8, 2021 11:47
Show Gist options
  • Save dapize/b888b31d3ffdc11c94aeb89524c6d58b to your computer and use it in GitHub Desktop.
Save dapize/b888b31d3ffdc11c94aeb89524c6d58b to your computer and use it in GitHub Desktop.
Install Wine 6 on Debian 10
#!/bin/bash
apt-get -y install aptitude
dpkg --add-architecture i386
aptitude -y install gnupg2 software-properties-common
wget -qO - https://dl.winehq.org/wine-builds/winehq.key | sudo apt-key add -
sudo apt-add-repository https://dl.winehq.org/wine-builds/debian/
wget -O- -q https://download.opensuse.org/repositories/Emulators:/Wine:/Debian/Debian_10/Release.key | sudo apt-key add -
echo "deb http://download.opensuse.org/repositories/Emulators:/Wine:/Debian/Debian_10 ./" | sudo tee /etc/apt/sources.list.d/wine-obs.list
sudo aptitude -y update
sudo apt -y install --install-recommends winehq-stable
sudo aptitude -y install wine32
wine --version
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment