Could someone please explain this to me?

Why is so much memory "intact" (what does that even mean)? Is that normal? Why isn't more memory free?

a0uem.png
 
Inact means inactive. Not intact. Also this answer could have been found simply by typing man top() in your console and searching for the term you didn't understand.
 
And that "Inact"ive memory is acting as a page cache for recently run programs and libraries so that if those pages are needed again before they are reclaimed then the system will not need to read them (again) from disk. This can give a big performance boost when starting new processes, so for most systems it is way more useful than lots of "free" memory.
 
Back
Top