getting dependent modules (shared objects) for a binary
https://stackoverflow.com/questions/2145854
Question
I have a binary file on linux .. tclsh8.4. It depends on certain tcl*.so files.
Is there a way to get this information from the binary file itself?
The tcl*.so files on which the binary tclsh8.4 depends is in some other directory having limited permission. What should I do to the binary file in order to use the same .so files from some other location?
Would just copying oved .so files in the same location work?
OTHER TIPS
To see the dependencies of dynamic .so file you can use the ldd
command. To get info about the executable file, check the readelf
command.
If you need to check the dependencies of multiple .so files, you can use the next script:
#!/bin/bash
# dependencies.sh
# Needs to specify the path to check for .so dependencies
if [ $# -ne 1 ]
then
echo 'You need to specify the path'
exit 0
fi
path=$1
for file in "$(find $path -name '*.so')"
do
ldd $file
done
exit 0
I hope it helps.
Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow