L'ho notato il 12.10 cercando di far funzionare l'SDK di Android. Per le versioni a 64 bit, è necessario installare:
sudo apt-get install ia32-libs
Tuttavia, sotto 64 bit 12.10, ho ricevuto il seguente errore:
The following packages have unmet dependencies:
ia32-libs : Depends: ia32-libs-multiarch but it is not installable
E
> apt-get install ia32-libs-multiarch
Reading package lists... Done
Building dependency tree
Reading state information... Done
Package ia32-libs-multiarch 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
E: Package 'ia32-libs-multiarch' has no installation candidate
Risposta accettata:
Ho trovato la soluzione qui commento n. 27,
sudo dpkg --add-architecture i386
sudo apt-get update
sudo apt-get install ia32-libs
Quindi le librerie a 32 bit si installano bene (per me comunque!). Spero che questo aiuti qualcuno!