Linux – Installing Wine on Linux Mint Debian Edition

debianlinuxlinux-mintwine

For whatever reason, Wine is not in the repository on LMDE. I would like to know how to install it. Can anyone provide instructions on how to do so?

Best Answer

wine is already available in Linux Mint Debian Edition repository you can install it by

sudo apt-get update
sud apt-get install wine1.3

Here is a guide to get latest version of wine in LMDE

  1. Download all binary (.deb)

    You can download the packages from here. The page provides *.deb packages for amd64 and i386 architecture. Download only the packages suitable for your machine. Place them in one folder. .

2.Pre-installation:

Install required dependencies Do this if you don't want to see an error message saying something like broken dependencies. You can skip this step though, you can fix it later (after WINE installation) by using Synaptic or by running sudo apt-get install -f. FYI, from my exprerience, a WINE library need a package called oss-compat_2 to be installed first.

3.Install WINE packages

  • Install WINE library

    Run this command in Terminal:

    sudo dpkg -i libwine*

  • Install WINE binary Run this command in Terminal:

    sudo dpkg -i wine-bin-unstable*

  • Install WINE application Run this command in Terminal:

    sudo dpkg -i wine-unstable*

  • If you encounter dependencies error while installing WINE, try run this command in Terminal:

    sudo apt-get install -f

4.Install WINE Gecko

This is optional. If you need running an internet based application like a browser in WINE, you need to have a package called "Wine Gecko". You can download it from here. After downloading the app, move or copy it to /usr/share/wine/gecko/ (create the folder if not exist; root previlage needed). This way, you have WINE Gecko available for all users. You can also choose to let WINE download it for you, but the downloaded file will be used only for current user, and also it will be removed when you remove .wine folder in you home directory.

Related Question