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, strippedI 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.3I now have a large supply of salty comments about Linux binary support and people who believe renaming libraries is a good idea.
1