Linux Process Monitoring/Show memory map for PID

Display a process memory map with sizes and permissions.

Section: Memory and Open File Views

Show memory map for PID

bash
bash
pmap -x 1234 | head -40
Explanation

Display a process memory map with sizes and permissions.

Learn the surrounding workflow

Compare similar commands or jump into common fixes when this command is part of a bigger troubleshooting path.

Related commands

Same sheet · prioritizing Memory and Open File Views
Show proportional set size
Compare memory usage with PSS if smem is installed.
OpenIn sheetbashsame section
List open files for PID
Show files, sockets, and descriptors opened by a process.
OpenIn sheetbashsame section
List open files by process name
Show open files for processes matching a name prefix.
OpenIn sheetbashsame section
Find deleted files still open
Find processes keeping deleted files open and consuming disk.
OpenIn sheetbashsame section
Read /proc status
Inspect status, memory, capabilities, and thread counts.
OpenIn sheetbashsame section
pidstat memory usage
Show RSS and memory faults per process.
OpenIn sheetbash1 tag match