Reputation: 261
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 ?
Upvotes: 0
Views: 2327
Reputation: 26184
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.
Upvotes: 3