Last active
July 8, 2021 11:47
-
-
Save dapize/b888b31d3ffdc11c94aeb89524c6d58b to your computer and use it in GitHub Desktop.
Install Wine 6 on Debian 10
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/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