TECHIES WORLD

For Techs.... Techniques.... Technologies....

Linux

Glibc error: bad ELF interpreter


/lib/ld-linux.so.2: bad ELF interpreter: No such file or directory


This is because of the system is 64 bit and don't have 32-bit library support installed.

Install 32 bit executables to resolve this problem.

RHEL, CentOS:

#yum install glibc.i686

Debian or Ubuntu:

#apt-get install ia32-libs

 

Leave a Reply