Possible duplicate of [See currently loaded Shared Objects in Linux](https://superuser.com/questions/310199/see-currently-loaded-shared-objects-in-linux)
– TotorAug 10 '17 at 13:57
2 Answers2
8
Try
lsof -p <pid> | grep .so
you may need to install lsof (apt-get install lsof on Ubuntu)