Solved lib

How to solve this problem

Code:
  libmd.so.5 => not found (0)
        libssl.so.6 => not found (0)
        libstdc++.so.6 => not found (0)
        libm.so.5 => /usr/lib32/libm.so.5 (0x288d6000)
        libgcc_s.so.1 => /usr/lib32/libgcc_s.so.1 (0x28900000)
        libthr.so.3 => /usr/lib32/libthr.so.3 (0x2890c000)
        libc.so.7 => /usr/lib32/libc.so.7 (0x2892d000)
 
Last edited by a moderator:
This is not a good example of a post.
Please, for the next post:
Use a title, who describes short the problem (lib is not enough).

You write the output of a command we did not know. Please, next time write also the command (and general what you trying to do).

And it is always interesting, how a problem was solved.
 
Well, this is obviously the output of ldd where an executable can't find some of the libraries it was compiled against.

The solution: rebuild whatever port provided the executable.

This is a good example why it is necessary to rebuild all your ports after performing a major OS upgrade.
 
Back
Top