These tools show the memory usage of all running processes (for example when you are running Ubuntu with Unity, but no particular application program running).
free
I am also using
free -m # Display the amount of memory in megabytes.
and I think the column 'used' is useful (no pun intended).
The output of free
is explained in the manual
man free
DESCRIPTION
free displays the total amount of free and used physical and swap memory in the system, as well
as the buffers and caches used by the kernel. The information is gathered by parsing /proc/mem‐
info. The displayed columns are:
total
Total installed memory (MemTotal and SwapTotal in /proc/meminfo)
used
Used memory (calculated as total - free - buffers - cache)
free
Unused memory (MemFree and SwapFree in /proc/meminfo)
shared
Memory used (mostly) by tmpfs (Shmem in /proc/meminfo, available on kernels 2.6.32, displayed as zero if not available)
buffers
Memory used by kernel buffers (Buffers in /proc/meminfo)
cache
Memory used by the page cache and slabs (Cached and Slab in /proc/meminfo)
buff/cache
Sum of buffers and cache
available
Estimation of how much memory is available for starting new applications, without swapping. Unlike the data provided by the cache or free fields, this field takes into account page cache and also that not all reclaimable memory slabs will be reclaimed due to items being in use (MemAvailable in /proc/meminfo, available on kernels 3.14, emulated on kernels 2.6.27+, otherwise the same as free)
top
top
will show the same (or almost the same) result (tested in 16.04 LTS), (but in older versions the output of top was more difficult to match to the output of free
).
htop
, more user friendly
You will get a similar result as 'used' with htop
installed with
sudo apt install htop
free -m
shows used 663 MiB directly after booting Ubuntu 17.10 Gnome with Wayland in my Intel NUC with simple Intel graphics.free -m
shows used 270 MiB directly after booting Lubuntu 17.10 (64-bit, the 32-bit version needs less RAM) in my Toshiba laptop, also with simple Intel graphics.free -m
shows used 1339 MiB in this computer (my production computer with an nvidia graphics card running Lubuntu with several tabs in Firefox plus Thunderbird and some terminal windows open). – sudodus Nov 05 '17 at 13:03