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}/mapsshow all loaded files in memory, besides other things? – pfnuesel Mar 09 '18 at 07:20lsoffor running processes,lddfor the executable commands, would show the libraries loaded. – muru Mar 09 '18 at 07:24