2012/09/03

Linux x86_64 - execute 32 bit applications

If you get the error

no such file or directory

when trying to execute a program under linux x86_64, it could be, that you are trying to run a 32 bit application without having ia32-libs installed.

Check if you have a x86_64 bit system installed

> uname -i
x86_64

This error can be solved by installing the ia32-libs. Under ubuntu this is done by the following command:

> sudo apt-get install ia32-libs

No comments:

Post a Comment