程序依赖库

1、find the dependents library of a program

Linux OS:

ldd : print shared library dependencies

$ ldd your_program_name

winodws OS:dll 的依赖

>>cd VS_INSTALL_DIR/VC/bin

>>dumpbin /dependents   your_dll

2、ps:process status

ps命令用来列出系统中当前运行的那些进程。ps命令列出的是当前那些进程的快照,就是执行ps命令的那个时刻的那些进程,如果想要动态的显示进程信息,就可以使用top命令。

其他linux命令。 




你可能感兴趣的:(Linux)