Difference between revisions of "System uses too much memory"

From Kolmisoft Wiki
Jump to navigationJump to search
Line 1: Line 1:
Current linux kernels uses all available memory for required operations (if build properly). Very often when program terminates, the memory which was used by this program isn't cleaned, it still stored in buffers. Thats the reason why you can see lots of memory usage, even is 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).
Current linux kernels (if their was build properly) uses all available memory for required operations . Very often when program terminates, the memory which was used by this program isn't cleaned, it still stored in buffers. Thats the reason why you can see lots of memory usage, even is 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).

Revision as of 10:07, 9 March 2009

Current linux kernels (if their was build properly) uses all available memory for required operations . Very often when program terminates, the memory which was used by this program isn't cleaned, it still stored in buffers. Thats the reason why you can see lots of memory usage, even is 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).