Saying that there is a running process named a
.
Is it possible to list all of the lib files that a
needs, including static link files and dynamic link files (.a
, .so
)?
Saying that there is a running process named a
.
Is it possible to list all of the lib files that a
needs, including static link files and dynamic link files (.a
, .so
)?
/proc/${PID}/maps
show all loaded files in memory, besides other things? – pfnuesel Mar 09 '18 at 07:20lsof
for running processes,ldd
for the executable commands, would show the libraries loaded. – muru Mar 09 '18 at 07:24