One command that usually works:
$ ldconfig -p | grep library
For example, to verify existence libuuid, you can:
$ ldconfig -p | grep libuuid
If this does not work, you can always find it manually in ordinary places. It is best to run this command as a user root:
# find /lib* /usr/lib* -name '*libuuid*'
user1019830
source
share