'Memory'에 해당되는 글 2건

  1. 2016.11.01 프로세스 메모리 사용량 보기
  2. 2014.03.31 Debug 모드에서 메모리 디버깅(?)
컴퓨터/우분투2016. 11. 1. 15:40

1. Linux 에서 프로세스의 메모리 사용량 보기

$ ps aux --sort rss

  설명> 물리메모리 사용량 순으로 정렬, RSS(Resident set size): 실제 점유하고 있는 물리 메모리 크기


2. 표시 정보

RSS : 실제 물리 메모리 사용량

VSZ : 가상 메모리 사용량

SIZE : 대략적인 스왑 메모리 사용량

%MEM : 메모리 사용 비율

   참고> 사용량: KB 단위, 비율: %단위



참고1> http://alvinalexander.com/linux/unix-linux-process-memory-sort-ps-command-cpu


참고2> http://zetawiki.com/wiki/%EB%A6%AC%EB%88%85%EC%8A%A4_%EB%A9%94%EB%AA%A8%EB%A6%AC_%EC%82%AC%EC%9A%A9%EB%9F%89%EC%88%9C_%ED%94%84%EB%A1%9C%EC%84%B8%EC%8A%A4_%EB%B3%B4%EA%B8%B0


Posted by jungtae17
컴퓨터/프로그래밍2014. 3. 31. 11:21

참고1> 디버그 모드에서의 메모리 특징 http://darpangs.tistory.com/26

 

참고2> Inside CRT: Debug Heap Management

 - http://www.codeguru.com/cpp/w-p/win32/tutorials/article.php/c9535/Inside-CRT-Debug-Heap-Management.htm

 

참고3> Win32 Debug CRT Heap Internals http://www.nobugs.org/developer/win32/debug_crt_heap.html

 

Posted by jungtae17