0

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 ?

Amit Nagar
  • 261
  • 3
  • 4
  • 14

1 Answers1

3

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.

piokuc
  • 25,594
  • 11
  • 72
  • 102