메모리 조회
free

가상메모리 조회
vmstat 5

자원 모니터링
top

프로세스별 메모리 사용량 조회
nmap -x PID

메모리 사용량 많은 순서대로 프로세스별 정렬해서 보기
ps aux | awk '{print $4"\t"$11}' | sort | uniq -c | awk '{print $2" "$1" "$3}' | sort -nr
CPU정보 : cat /proc/cpu or cpuinfo
디바이스정보 : cat /proc/devices
사용중인 파일 시스템 : cat /proc/filesystems
인터럽트(IRQ) : cat /proc/interrupts
메모리 : cat /proc/meminfo
작동중인 모듈확인 : cat /proc/modules 또는 lsmod
마운트정보 : cat /proc/mounts
파티션정보 : cat /proc/partitions
PCI정보 : cat /proc/pci
스왑정보 : cat /proc/swaps
커널버전, 호스트정보, 커널 컴파일일자 등 : cat /proc/version

+ Recent posts