0

Possible Duplicate:
What happened to the ia32-libs package?

I am not able to install these libraries. Where should i download these from and how to install them?

  • 1
    Try this http://askubuntu.com/questions/107230/what-happened-to-the-ia32-libs-package?rq=1 . Also a Possible Duplicate. – atenz Jun 16 '12 at 06:08
  • The command that you've used worked for me just now. What Ubuntu release are you running? – Mitch Jun 16 '12 at 06:18

1 Answers1

1

If you are using the 32 bit version of Ubuntu, you don't need nor will you find an ia32-libs package. That's only required for the 64 bit version of Ubuntu.

To install 32-bit libraries on a 64-bit Ubuntu system,

Just press Ctrl+Alt+T on your keyboard to open Terminal. When it opens, run the commands below.

sudo apt-get install ia32-libs
Mitch
  • 107,631