RAM: 2143MiB / 3798MiB
What does this means ? I cannot even know about my laptop's RAM
RAM: 2143MiB / 3798MiB
What does this means ? I cannot even know about my laptop's RAM
On the command line you can use:
free
to check your (free/available) RAM. Also do:
man free
free -g
and it will show you in GiB or free -m
will be MiB... you will look at total
used
and available
just a note tho that it may be just slightly less than you are are supposed to have .. thats normal .. like yours says 3798MiB .. that would be 4GB ram
– John Orion
Dec 12 '17 at 07:46
You could as well use either top
(preinstalled) or htop
to monitor your memory usage.
It adds some details free
doesn't (context to running processes)