Easy Tutorial
❮ Linux Comm Setleds Linux Comm Less ❯

Linux free Command

Linux Command Manual

The Linux free command is used to display memory status.

The free command shows the usage of memory, including physical memory, virtual swap file memory, shared memory segments, and buffers used by the system kernel.

Syntax

free [-bkmotV][-s <interval seconds>]

Parameter Description:

Examples

Display memory usage

# free //Display memory usage information
total used free shared buffers cached
Mem: 254772 184568 70204 0 5692 89892
-/+ buffers/cache: 88984 165788
Swap: 524280 65116 459164

Display memory usage in total

# free -t //Query memory usage information in total
total used free shared buffers cached
Mem: 254772 184868 69904 0 5936 89908
-/+ buffers/cache: 89024 165748
Swap: 524280 65116 459164
Total: 779052 249984 529068

Periodically query memory usage information

# free -s 10 //Execute the command every 10 seconds
total used free shared buffers cached
Mem: 254772 187628 67144 0 6140 89964
-/+ buffers/cache: 91524 163248
Swap: 524280 65116 459164

total used free shared buffers cached
Mem: 254772 187748 67024 0 6164 89940
-/+ buffers/cache: 91644 163128
Swap: 524280 65116 459164

Linux Command Manual

❮ Linux Comm Setleds Linux Comm Less ❯