System Grab Bag

View all TLDR pages from Linux (or from all pages)

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

License and Disclaimer

The content on this page is copyright © 2014—present the tldr-pages team and contributors.
This page is used with permission under Creative Commons Attribution 4.0 International License.

While we do attempt to make sure content is accurate, there isn't a warranty of any kind.