But it is confusing when a lot of free memory is displayed but the system has swapping activated. By definition, a system will only swap if there is insufficient physical memory available. The displayed real memory bar is confusing. A 'normal user' like me can only find a contradiction in it. Visualizing the cached memory on the real memory bar, using a different color might be a solution. Just a idea.
Hi Jamie I applied the follwing Patch as a workaround. Of course it's the wrong place to solve the Problem well. --- /usr/share/webmin/system-status/system-status-lib_Orig.pl 2018-11-16 16:22:27.000000000 +0100 +++ /usr/share/webmin/system-status/system-status-lib.pl 2018-12-26 12:00:19.000000000 +0100 @@ -43,6 +43,9 @@ $m[0] /= 1024; $m[1] /= 1024; } + elsif ($gconfig{'os_type'} eq 'debian-linux') { + $m[1] = $m[0]-$m[1]; + } } # CPU and kernel The Status Display looks like this after.
Hi Jamie Of course i can do that. I applied the follwing Patch as a workaround. Of course it's the wrong place to solve the Problem well. --- /usr/share/webmin/system-status/system-status-lib_Orig.pl 2018-11-16 16:22:27.000000000 +0100 +++ /usr/share/webmin/system-status/system-status-lib.pl 2018-12-26 12:00:19.000000000 +0100 @@ -43,6 +43,9 @@ $m[0] /= 1024; $m[1] /= 1024; } + elsif ($gconfig{'os_type'} eq 'debian-linux') { + $m[1] = $m[0]-$m[1]; + } } # CPU and kernel The Status Display looks like...
Status Display