free
(1)Display amount of free and used memory in the system
Options
22-b--bytesDisplay the amount of memory in bytes.
-k--kibiDisplay the amount of memory in kibibytes. This is the default.
-m--mebiDisplay the amount of memory in mebibytes.
-g--gibiDisplay the amount of memory in gibibytes.
--tebiDisplay the amount of memory in tebibytes.
--pebiDisplay the amount of memory in pebibytes.
--kiloDisplay the amount of memory in kilobytes. Implies --si.
--megaDisplay the amount of memory in megabytes. Implies --si.
--gigaDisplay the amount of memory in gigabytes. Implies --si.
--teraDisplay the amount of memory in terabytes. Implies --si.
--petaDisplay the amount of memory in petabytes. Implies --si.
-h--humanShow all output fields automatically scaled to shortest three digit unit and display the units of print out. Following units are used. B = bytes Ki = kibibyte Mi = mebibyte Gi = gibibyte Ti = tebibyte Pi = pebibyte If unit is missing, and you have exbibyte of RAM or swap, the number is in tebibytes and columns might not be aligned with header.
-w--wideSwitch to the wide mode. The wide mode produces lines longer than 80 characters. In this mode buffers and cache are reported in two separate columns.
-c--countcountDisplay the result count times. Requires the -s option.
-l--lohiShow detailed low and high memory statistics.
-L--lineShow output on a single line, often used with the -s option to show memory statistics repeatedly.
-s--secondsdelayContinuously display the result delay seconds apart. You may actually specify any floating point number for delay using either . or , for decimal point. usleep(3) is used for microsecond resolution delay times.
--siUse kilo, mega, giga etc (power of 1000) instead of kibi, mebi, gibi (power of 1024).
-t--totalDisplay a line showing the column totals.
-v--committedDisplay a line showing the memory commit limit and amount of committed/uncommitted memory. The total column on this line will display the memory commit limit. This line is relevant if memory overcommit is disabled.
--helpPrint help.
-V--versionDisplay version information.
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/meminfo. The displayed columns are:
- total
- Total usable memory (MemTotal and SwapTotal in /proc/meminfo). This includes the physical and swap memory minus a few reserved bits and kernel binary code.
- used
- Used or unavailable memory (calculated as total - available)
- free
- Unused memory (MemFree and SwapFree in /proc/meminfo)
- Memory used (mostly) by tmpfs (Shmem in /proc/meminfo)
- buffers
- Memory used by kernel buffers (Buffers in /proc/meminfo)
- cache
- Memory used by the page cache and slabs (Cached and SReclaimable 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)