Skip to content

Instantly share code, notes, and snippets.

@mattkasun
Created December 15, 2018 16:42
Show Gist options
  • Save mattkasun/51a577a7b135e108b775d8dd00550899 to your computer and use it in GitHub Desktop.
Save mattkasun/51a577a7b135e108b775d8dd00550899 to your computer and use it in GitHub Desktop.
wine
Re: Wine install Mint 19 Mate
Post by truesarang » Mon Jul 16, 2018 6:56 pm
1. sudo dpkg --add-architecture i386
2. wget -nc https://dl.winehq.org/wine-builds/Release.key
3. sudo apt-key add Release.key
4. sudo apt-add-repository 'deb https://dl.winehq.org/wine-builds/ubuntu/ bionic main'
5. sudo apt-get update
6. if you want to get stable version: sudo apt-get install --install-recommends winehq-stable
if you want to get develpment version: sudo apt-get install --install-recommends winehq-devel
if you want to get staging version: sudo apt-get install --install-recommends winehq-staging
7. WineARCH=win32 WINEPREFIX=~/.wine wine wineboot (this will initiate environment for wine, if you want win64 change value win32 to win64)
if you somehow massed up you can always do sudo rm -rf ~/.wine and do above command again to initiate it.
8. sudo apt-get install winetricks (winetricks is useful when you need to install windows library,etc)
good luck!
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment