https://bugs.kde.org/show_bug.cgi?id=403269
--- Comment #7 from caulier.gil...@gmail.com --- There is one solution here, but it's not perfect as it return all symlinks pointing to shared lib : https://stackoverflow.com/questions/13148608/how-can-i-find-the-full-file-path-given-a-library-name-like-libfoo-so-1 ex under Centos6.10 : [gilles@localhost data]$ echo "$(ldconfig -p | grep libudev.so | tr ' ' '\n' | grep /)" /lib64/libudev.so.0 /usr/lib64/libudev.so [gilles@localhost data]$ ll /lib64/libudev.so.0 lrwxrwxrwx. 1 root root 16 29 oct. 11:09 /lib64/libudev.so.0 -> libudev.so.0.5.1 [gilles@localhost data]$ echo "$(ldconfig -p | grep libfreetype.so | tr ' ' '\n' | grep /)" /usr/lib64/libfreetype.so.6 /usr/lib64/libfreetype.so Gilles -- You are receiving this mail because: You are watching all bug changes.