I'm typing a shell script to find out the total physical memory in some RHEL linux boxes.
First of all I want to stress that I'm interested in the total physical memory recognized by kernel, not just the available memory. Therefore, please, avoid answers suggesting to read /proc/meminfo or to use the free, top or sar commands -- In all these cases, their "total memory" values mean "available memory" ones.
The first thought was to read the boot kernel messages:
Memory: 61861540k/63438844k available (2577k kernel code, 1042516k reserved, 1305k data, 212k init)
But in some linux boxes, due to the use of EMC2's PowerPath software and its flooding boot messages in the kernel startup, that useful boot kernel message is not available, not even in the /var/log/dmesg file.
The second option was the dmidecode command (I'm warned against the possible mismatch of kernel recognized RAM and real RAM due to the limitations of some older kernels and architectures). The option --memory simplifies the script but I realized that older releases of that command has no --memory option.
My last chance was the getconf command. It reports the memory page size, but not the total number of physical pages -- the _PHYS_PAGES system variable seems to be the available physical pages, not the total physical pages.
# getconf -a | grep PAGES PAGESIZE 4096 _AVPHYS_PAGES 1049978 _PHYS_PAGES 15466409
My question: Is there another way to get the total amount of physical memory, suitable to be parsed by a shell script?
Adding all above values displayed after "Size: " will give exact total physical size of all RAM sticks in server.
cat /proc/meminfo | grep MemTotal
or free gives you the exact amount of RAM your server has. This is not "available memory".I guess your issue comes up when you have a VM and you would like to calculate the full amount of memory hosted by the hypervisor but you will have to log into the hypervisor in that case.
is equivalent to
Add the last 2 entries of
/proc/meminfo
, they give you the exact memory present on the host.Example:
10240 + 4184064 = 4194304 kB = 4096 MB.
I find
htop
a useful tool.and then
will give the information you need.
Have you tried
cat /proc/meminfo
? You can then grep out what you want, MemTotal e.g.Updated Example (btw. thanks, Masta):
One more useful command:
vmstat -s | grep memory
sample output on my machine is:
another useful command to get memory information is:
free
sample output is:
One observation here is that, the command
free
gives information about swap space also.The following link may be useful for you:
http://www.linuxnix.com/find-ram-details-in-linuxunix/