Dear all,
I am completely confused by to displayed information in the overview page.
There are total available, used, buffered, cached. What does these all mean?
Thank you!
Dear all,
I am completely confused by to displayed information in the overview page.
There are total available, used, buffered, cached. What does these all mean?
Thank you!
Thanks.
In the page you linked, it says
used Used memory (calculated as total - free - buffers - cache)
But I got 97% used, 11% buffered, 76% cached.
If "total - free - buffer - cache = used" , it just does not add up
Please compare the figures with calling free
via ssh, I think "Used" might aggregate the actually used RAM with buffers and cache.
OK will do later today.
I just feel the current luci overview of RAM is completely a mess.
MemAvailable
) as reported by /proc/meminfo
- this is the kernel's estimate of RAM actually available to applications. This figure also includes some buffer and cache memory because such memory would be given to applications under memory pressure (see also longer explanation at https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git/commit/?id=34e431b0ae398fc54ea69ff85ec700722c9da773)MemTotal - MemFree
basically the total addressable system RAM minus the amount of ram the kernel considers to be untouchedThese values are not supposed to add up, they rather provide different indications about memory utilization:
MemTotal - MemFree
)Thank you so much for this write-up!
Your elaborated explanation benefits a lot of people like me, who is having trouble figuring out the exact meaning of it.
In my case, I have transmission running in the background uploading torrents, which explains the high "cached" count. I guess if any other application claims those RAM, it will impact the filesystem performance like you mentioned.
This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.