Difference between revisions of "System uses too much memory"

From Kolmisoft Wiki
Jump to navigationJump to search
 
Line 15: Line 15:


  free -m
  free -m
and
  top
  top


Line 20: Line 23:


<br><br>
<br><br>
= How to find which process uses most memory =
= How to find which process uses most memory =


  ps -auxf | sort -nr -k 4 | head -10
  ps -auxf | sort -nr -k 4 | head -10

Latest revision as of 14:48, 10 September 2011

IMPORTANT: Linux manages memory different compared to Windows.

Current Linux kernels (if they were build properly) uses all available memory for required operations .

Very often when program terminates, the memory which was used by one process isn't cleaned, it still stored in buffers.

Thats the reason why you can see lots of memory usage, even if system doesn't do anything.

This isn't bad, because any other process could have same amount of memory (stored data in memory by first process will be overwritten by another process data).

More info: http://forums.gentoo.org/viewtopic.php?t=175419



How to check general memory usage

free -m

and

top

Explanation about it: http://www.linuxhowtos.org/System/Linux%20Memory%20Management.htm



How to find which process uses most memory

ps -auxf | sort -nr -k 4 | head -10