7

Basically simple question: is it possible to install 32-bit libraries on my 64-bit Ubuntu 14.04 LTS box? I need to run an app which requires 32-bit support.

The information found on this forum is all about older versions, and I as not able to filter out all static.

If those libraries are still supported, how do I then get those installed on my box? So far what I tried only led to errors like "Package 'ia32-libs' has no installation candidate" or "Failed to fetch".

Braiam
  • 66,947
  • 30
  • 177
  • 264
Patrick Simon
  • 191
  • 1
  • 1
  • 5

2 Answers2

11

It appeared that the following commands were working for me:

sudo dpkg --add-architecture i386
sudo apt-get update
sudo apt-get install libc6:i386 libncurses5:i386 libstdc++6:i386

I found it here: How to run 32-bit app in Ubuntu 64-bit?

Patrick Simon
  • 191
  • 1
  • 1
  • 5
6

You can install 32 bits package with this command: sudo apt-get install package:i386
I think you have to begin with this one: sudo apt-get install libstdc++6:i386

Parto
  • 15,027
  • 24
  • 86
  • 114
user325522
  • 61
  • 1