3

I am running a 64-bit version of Kubuntu 12.04. When trying to run a 32-bit .bin file I am getting the following error:

$ ./jdevstudio11121install.bin
./jdevstudio11121install.bin: No such file or directory

However when I run a file command I receive the following:

$ file jdevstudio11121install.bin 
ELF 32-bit LSB executable, Intel 80386, version 1 (SYSV), dynamically linked (uses shared libs), for GNU/Linux 2.2.5, stripped

How do I run this file? Is it possible to run 32-bit executable on a 64-bit OS. Please help me.

Sekm
  • 103
Sameer
  • 45

1 Answers1

4

Type this in the Terminal:

sudo apt-get install ia32-libs

This will install most needed 32 bit libraries and hopefully you will be able to run the file.

Or if you prefer, you can install the ia32-libs package in the Software Center.

Eliah Kagan
  • 119,640
Ashu
  • 9,642