HiveBrain v1.2.0
Get Started
← Back to all entries
snippetbashTip

pmap — Report memory map of a process or processes. More information: <https://manned.org/pmap>.

Submitted by: @import:tldr-pages··
0
Viewed 0 times
commandreportprocessmemoryclimappmapprocesses
linux

Problem

How to use the pmap command: Report memory map of a process or processes. More information: <https://manned.org/pmap>.

Solution

pmap — Report memory map of a process or processes. More information: <https://manned.org/pmap>.

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 ...}}

Code Snippets

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 ...}}

Context

tldr-pages: linux/pmap

Revisions (0)

No revisions yet.