Where can I find /lib/ld-lsb.so.3 for Ubuntu 21.04?

I need to get a 32 bit ELF interpreter for an old binary.

file ./actlmgrd
./actlmgrd: ELF 32-bit LSB executable, Intel 80386, version 1 (SYSV), dynamically linked, interpreter /lib/ld-lsb.so.3, for GNU/Linux 2.6.18, BuildID[sha1]=74d9c7780145f113e746c1c1bccfb4d9264022bf, stripped

I was able to get the 64 bit variant in the lsb-core package, but I cannot find i386 equivalent.

1 Answer

The answer was that ld-linux.so.2 is identical to ld-lsb.so.3. A symbolic link solved my problem.

sudo ln -s /lib/ld-linux.so.2 /lib/ld-lsb.so.3

I now have a large supply of salty comments about Linux binary support and people who believe renaming libraries is a good idea.

1

Your Answer

Sign up or log in

Sign up using Google Sign up using Facebook Sign up using Email and Password

Post as a guest

By clicking “Post Your Answer”, you agree to our terms of service, privacy policy and cookie policy

You Might Also Like