2022-03-17 11:40:40 +00:00
|
|
|
# pmap
|
|
|
|
|
|
|
|
> Report memory map of a process or processes.
|
|
|
|
> More information: <https://manned.org/pmap>.
|
|
|
|
|
2024-03-14 05:01:06 +00:00
|
|
|
- Print memory map for a specific process ID (PID):
|
2022-03-17 11:40:40 +00:00
|
|
|
|
|
|
|
`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 ...}}`
|