mirror of
https://github.com/tldr-pages/tldr.git
synced 2025-04-21 21:22:06 +02:00
481 B
481 B
pmap
프로세스 또는 프로세스들의 메모리 맵을 보고. 더 많은 정보: https://manned.org/pmap.
- 특정 프로세스 ID (PID)의 메모리 맵 출력:
pmap {{pid}}
- 확장된 형식 표시:
pmap --extended {{pid}}
- 장치 형식 표시:
pmap --device {{pid}}
low
와high
로 지정된 메모리 주소 범위로 결과 제한:
pmap --range {{low}},{{high}}
- 여러 프로세스의 메모리 맵 출력:
pmap {{pid1 pid2 ...}}