Score:2

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

cn flag

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.

Score:2
cn flag

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.

N0rbert avatar
zw flag
Looks ok, but having such symlinks in APT controlled folder is not recommended. Placing it in /usr/local/lib would be better. So I would recommend to use the following commands: `sudo rm /lib/ld-lsb.so.3 ; sudo ln -s /lib/ld-linux.so.2 /usr/local/lib/ld-lsb.so.3 ; sudo ldconfig` .
mangohost

Post an answer

Most people don’t grasp that asking a lot of questions unlocks learning and improves interpersonal bonding. In Alison’s studies, for example, though people could accurately recall how many questions had been asked in their conversations, they didn’t intuit the link between questions and liking. Across four studies, in which participants were engaged in conversations themselves or read transcripts of others’ conversations, people tended not to realize that question asking would influence—or had influenced—the level of amity between the conversationalists.