Memory Inconsistency in GUI and CLI

gutter007

New Member
May 1, 2012
19
0
1
I'm running Proxmox 2.0, and I'm really confused by looking at the available memory.

When I log in to the GUI interface


RAM usage 94 GB Total
40 GB Used

When I logon to the physical host:
root@strongest:~# free -g
total used free shared buffers cached[TABLE="width: 500"]
[TR]
[TD][/TD]
[TD]total[/TD]
[TD]used[/TD]
[TD]free[/TD]
[TD]shared[/TD]
[TD]buffers[/TD]
[TD]cached[/TD]
[/TR]
[TR]
[TD]Mem[/TD]
[TD]94[/TD]
[TD]94[/TD]
[TD]0[/TD]
[TD]0[/TD]
[TD]1[/TD]
[TD]54[/TD]
[/TR]
[/TABLE]

Why is there a large difference between these numbers? Is all my memory being used?

thanks.
myles.
 
linux tends to reserve all available memory, which is what you see there. the amount of memory still available to processes is the sum of buffers+cached in the free output.

And by utilizing some math you can see that 94-54 = 40 which is the amount of memory the GUI reports to be actually in use ;)