commands.sh

pmap

linux

Report memory map of a process or processes.

More info →

Examples (5)

Print memory map for a specific process ID (PID)

pmap pid

Show the extended format

pmap --extended pid

Show the device format

pmap --device pid

Limit results to a memory address range specified by `low` and `high`

pmap --range low,high

Print memory maps for multiple processes

pmap pid1 pid2 ...
made by @shridhargupta | data from tldr-pages