slu

How to check the amount of RAM in a Linux machine

Aug 17, 2010 11:26

On Linux information about memory are available ind the virtual file /proc/meminfo, you can open this file in an editor or simple display it in a console like this:

$ less /proc/meminfo

The output will be something like this:

MemTotal: 1034436 kB ( Read more... )

awk, linux, bash

Leave a comment

Comments 2

Perhaps use lshw ext_345529 December 4 2010, 11:46:54 UTC
sudo lshw -short -class memory

Reply

Re: Perhaps use lshw slu December 4 2010, 17:15:04 UTC
Great. That gives more precise information about the specific type of RAM installed. It does require sudo to give that info though.

Reply


Leave a comment

Up