TranslateProject/published/201408/20140807 Linux FAQs with Answers--How to check what libraries are used by a program or process on Linux.md
2014-09-02 20:57:38 +08:00

45 lines
2.0 KiB
Markdown
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

Linux有问必答如何查看Linux上程序或进程用到的库
================================================================================
> **问题**我想知道当我调用一个特定的可执行文件在运行时载入了哪些共享库。是否有方法可以明确Linux上可执行程序或运行进程的共享库依赖关系
### 查看可执行程序的共享库依赖关系 ###
要找出某个特定可执行依赖的库可以使用ldd命令。这个命令调用动态链接器去找到程序的库文件依赖关系。
$ ldd /path/to/program
![](https://farm4.staticflickr.com/3872/14846153231_195cfff0f0_z.jpg)
注意并不推荐为任何不可信的第三方可执行程序运行ldd因为某些版本的ldd可能会直接调用可执行程序来明确其库文件依赖关系这样可能不安全。
取而代之的是用一个更安全的方式来显示一个未知应用程序二进制文件的库文件依赖,使用如下命令:
$ objdump -p /path/to/program | grep NEEDED
![](https://farm6.staticflickr.com/5552/14849218545_e3b667e742_o.png)
###查看运行进程的共享库依赖关系###
如果你想要找出被一个运行中的进程载入的共享库你可以使用pldd命令它会显示出在运行时被载入一个进程里的所有共享对象。
$ sudo pldd <PID>
注意你需要root权限去执行pldd命令。
![](https://farm6.staticflickr.com/5570/14846775694_96a6b96592_z.jpg)
或者也可以选择一个叫做pmap的命令行工具。它报告一个进程的内存映射也能显示出运行进程的库文件依赖。
$ sudo pmap <PID>
![](https://farm4.staticflickr.com/3919/14848885042_7e5bee2684_z.jpg)
--------------------------------------------------------------------------------
via: http://ask.xmodulo.com/check-library-dependency-program-process-linux.html
译者:[KayGuoWhu](https://github.com/KayGuoWhu)
校对:[wxy](https://github.com/wxy)
本文由 [LCTT](https://github.com/LCTT/TranslateProject) 原创翻译,[Linux中国](http://linux.cn/) 荣誉推出