Click on the power/gear icon (System Menu) in the top right corner of the screen and choose About This Computer. You will see the total available memory in GiB. Multiply the value by 1024 to get the size in MiB.
This value (and the value shown as Total in output of free -m on the console), is total physical RAM size, minus the amount assigned to the internal GPU, if your computer has one.
To see the total amount of physical RAM installed, you can run sudo lshw -c memory which will show you each individual bank of RAM you have installed, as well as the total size for the System Memory. This will likely presented as GiB value, which you can again multiply by 1024 to get the MiB value.
To see the physical chip information, you can use dmidecode to extract the DMI type 17 (Memory Device) tagged information:
sudo dmidecode -t 17
this informs you about all the memory devices installed, including the type, speed, manufacturer, form factor and a lot more besides. Yo also have sudo dmidecode -t memory which give a little bit more information.
From a terminal you should be able to use:
From
man
page:Note: A kilobyte (kB) is 1000 Bytes.
Open a terminal (CTRL + ALT + T)...
Run following command to see RAM information in KB (1 KB is equal to 1024 bytes).
Run following command to see RAM information in MB (1 MB is equal to 1024 KB).
Run following command to see RAM information in GB (1 GB is equal to 1024 MB).
Or you can run following command to see more information about the same:
Click on the power/gear icon (System Menu) in the top right corner of the screen and choose About This Computer. You will see the total available memory in GiB. Multiply the value by 1024 to get the size in MiB.
This value (and the value shown as Total in output of
free -m
on the console), is total physical RAM size, minus the amount assigned to the internal GPU, if your computer has one.To see the total amount of physical RAM installed, you can run
sudo lshw -c memory
which will show you each individual bank of RAM you have installed, as well as the total size for the System Memory. This will likely presented as GiB value, which you can again multiply by 1024 to get the MiB value.Physical memory available in MiB:
Virtual memory available in MB:
..or use /proc/meminfo:
To see the physical chip information, you can use
dmidecode
to extract the DMI type 17 (Memory Device) tagged information:this informs you about all the memory devices installed, including the type, speed, manufacturer, form factor and a lot more besides. Yo also have
sudo dmidecode -t memory
which give a little bit more information.