Ubuntu – How to check RAM size

ram

What is the command to find the RAM size in computer? I want to see result in MB.

Best Answer

From a terminal you should be able to use:

free -m

From man page:

-m, --mebi Display the amount of memory in mebibytes.

--mega Display the amount of memory in megabytes. Implies --si.

Note: A kilobyte (kB) is 1000 Bytes.

Related Question