dynamically loaded libraries

how to get the list of all dynamically loaded libraries in memory ?thanks!

You could use ldd.

ldd appl-name would show you the libraries that are used(needed) by app-name.

Vino

ipcs shows shared memory segments.
fuser or lsof shows open files, by process
ldd or chatr shows what libraries a module will open.

Use the one(s) you need.

Thanks! :slight_smile: