Last Updated: February 25, 2016
·
6.72K
· joakley77

Installing Wine on Ubuntu 12.10 on 64 bit System

I had some issues installing Wine on my new install of Ubuntu 12.10. I kept getting dependency issues and errors no matter what I tried and Google was of no help for days. After some researching and finding some better criteria to search for, I finally found a solution. This tip has been summarized from here.

The gist of what's going on is that newer versions of apt and dpkg support a feature called "multiarch". Quite simply, you can specify that apt pulls package info from repositories for architectures other than the native install, and install multiarch compatible packages from those repos. For more info you can read this.

Check your native architecture with:

sudo dpkg --print-architecture #in your case this should return 'amd64'

Other available architectures can be shown by:

sudo dpkg --print-foreign-architectures #in your case this should not return anything

So you need to configure a new foreign architecture (quantal/12.10 only**):

sudo dpkg --add-architecture i386

Check your new arch is now available, update and install your package with apt:

sudo dpkg --print-foreign-architectures #now this should return 'i386'
sudo apt-get update; sudo apt-get install wine1.5 #and away you go!

Hopefully it helps someone (or at least gave you something to read in the bathroom).

3 Responses
Add your response

Thanks! It seems to be installing now. All this trouble just to see how well WoW runs under Wine...sigh.

over 1 year ago ·

Thanks for this!

over 1 year ago ·

Hi , i get those errors when running the last command
Package wine1.5 is not available, but is referred to by another package.
This may mean that the package is missing, has been obsoleted, or
is only available from another source
However the following packages replace it:
wine1.7:i386 wine1.7 wine1.6:i386 wine1.6

E: Package 'wine1.5' has no installation candidate

for the others comand here what they output
sudo dpkg --print-architecture
amd64
sudo dpkg --print-foreign-architectures
i386

i'm under ubntu 14.04
any hints plzz ?

over 1 year ago ·