I am working on memory management in different OS like AIX, Win and Unix. The pmap command works fine for Solaris but I can't able to find the similar command for AIX.

Is pmap works in AIX or is there any similar command ?

有帮助吗?

解决方案

For AIX this will be procmap which, according to documentation "prints the address space map of processes".

You can also have a look at psutil which is a Python

module providing an interface for retrieving information on all running processes and system utilization (CPU, memory, disks, network, users) in a portable way by using Python, implementing many functionalities offered by command line tools such as: ps, top, ..., pmap. [...] It currently supports Linux, Windows, OSX and FreeBSD.

许可以下: CC-BY-SA归因
不隶属于 StackOverflow
scroll top