0 votes
in Linux by

How can you find out how much memory Linux is using?

1 Answer

0 votes
by
From a command shell, use the "concatenate" command: cat /proc/meminfo for memory usage information. You should see a line starting something like Mem: 64655360, etc. This is the total memory Linux thinks it has available to use.

You can also use commands

free - m

vmstat

top

htop

to find current memory usage
...