0

I cannot install ia32 libs no matter how hard I try. Here is the error I get:

Reading package lists... Done
Building dependency tree       
Reading state information... Done
Some packages could not be installed. This may mean that you have
requested an impossible situation or if you are using the unstable
distribution that some required packages have not yet been created
or been moved out of Incoming.
The following information may help to resolve the situation:

The following packages have unmet dependencies:
 ia32-libs : Depends: ia32-libs-multiarch but it is not installable
E: Unable to correct problems, you have held broken packages.

When I try to install ia32-libs-multiarch i get:

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

I've tried many things suggested on forums. Is this not fixable or is there a certain fix I may not have already tried?

Lucio
  • 18,843
  • 3
    Before saying don't point me to a forum post that doesn't work, you should list the ones you've tried. I'm sure the solution is already posted somewhere and denying all forum posts doesn't help. – RobotHumans Mar 26 '13 at 01:33
  • can you show us your software sources? I'm getting the feeling that the problem is there. – Jason Mar 26 '13 at 04:09

1 Answers1

0

Sounds like your APT doesn't have an i386 foreign architecture. I have no idea why this happens to people...

Try:

sudo dpkg --add-architecture i386
sudo apt-get update
sudo apt-get install ia32-libs
tumbleweed
  • 8,026