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

Related questions

+1 vote
asked May 9, 2021 in Linux by sharadyadav1986
0 votes
asked Jul 5, 2022 in Linux by sharadyadav1986
...