What is the purpose of the ldd command?
What is the purpose of the ldd command?
The purpose of the ldd command is to list which shared libraries a binary needs to run. It is used to display the shared objects (libraries) required by each program or shared library specified on the command line.
man ldd: ldd prints the shared libraries required by each program or shared library specified on the command line.
Right. A
A. It lists which shared libraries a binary needs to run.