Last active
July 16, 2021 20:11
-
-
Save raphaelbruno/749d4528ec9eec1ad619f66e6353aed2 to your computer and use it in GitHub Desktop.
Wine Installation
This file contains 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
# Wine (Last Version - It has bugs with some versions of the .Net) | |
sudo dpkg --add-architecture i386 | |
wget -nc https://dl.winehq.org/wine-builds/winehq.key | |
sudo apt-key add winehq.key | |
sudo add-apt-repository 'https://dl.winehq.org/wine-builds/ubuntu/' | |
sudo apt update | |
sudo apt install --install-recommends winehq-devel | |
# Wine 5.0.x | |
sudo apt install wine | |
# Winetricks | |
sudo apt install winetricks | |
# Initialize | |
wine wineboot | |
# Settings | |
winecfg | |
# Some Dependencies | |
winetricks -q corefonts dotnet48 d3dcompiler_43 d3dx11_43 glut vb6run vcrun6 | |
# If you need 32 bits | |
WINEPREFIX="$HOME/your/directory" WINEARCH=win32 wine wineboot |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment