This Blog is to share our knowledge and expertise on Linux System Administration and VMware Administration

Wednesday, September 13, 2017

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

When we encounter this error /lib/ld-linux.so.2: bad ELF interpreter: No such file or directory this is how you can fix it:

This will happen only on 64 bit systems, the cause is the fact that 32 bit libraries are missing from the system, so we can easily fix this issue by installing the 32 bit libraries on our system.

In RHEL

yum -y install glibc.i686


If the issue happen in  Debian/Ubuntu/Mint

apt-get update
apt-get install ia32-libs

That's it.

No comments:

Post a Comment