ldd program_path | grep "not found"
With the ldd command we can check which libraries a program uses. By combining the ldd and grep commands we can quickly find missing libraries.
Having trouble with missing libraries? See how to efficiently check for them using the ldd and grep commands. A simple solution!
ldd program_path | grep "not found"
With the ldd command we can check which libraries a program uses. By combining the ldd and grep commands we can quickly find missing libraries.