free: command not found

The free command parses the /proc/meminfo file for easier analysis of memory usage statistics. Its default behavior is to display the following information about system memory and swap space:

  • The total memory.
  • The total used.
  • The total free.
  • The total shared.
  • The total buffered and cached.
  • The total available for starting new apps (estimated).

Syntax

The syntax of the free command is:

# free [options]

If you encounter the below error while running the free command:

free: command not found

you may try installing the below package as per your choice of distribution:

OS Distribution Command
Debian apt-get install procps
Ubuntu apt-get install procps
Alpine apk add procps
Arch Linux pacman -S procps-ng
Kali Linux apt-get install procps
CentOS yum install procps-ng
Fedora dnf install procps-ng
Raspbian apt-get install procps

free Options

There are several command options available for the free command.

Options Used To
-b, -k, -m, -g, -tera Display memory in bytes, kilobytes, megabytes, gigabytes, and terabytes, respectively.
-s {seconds} Update memory statistics at a delay of the specified seconds.
-o Disable the display of the buffered/cached information.
-t Display a total line that combines physical RAM with swap space.
-h Make the output more human-readable.

Buffer/Cache Output

Memory can be cached, meaning that it is stored temporarily so that the data it contains can be accessed much quicker in the future. The Buffers field in /proc/meminfo indicates memory that is assigned to a specific block device. This memory is used to cache file system metadata, like directory contents, permissions, etc. The Cached memory is similar, but instead of storing file metadata, it stores the actual contents of files. The free command combines these two values together upon output.

free Command Examples

1. To display the memory utilization:

# free

2. To display the memory utilization in bytes:

# free -b 

3. To display the memory utilization in kilo bytes:

# free -k 

4. To display the memory utilization in mega bytes:

# free -m 

5. To display the memory utilization in giga bytes:

# free -g 

6. To display the memory utilization with totals:

# free -t 

7. To display the memory utilization skipping displaying “buffer adjusted”:

# free -o 

8. To display the continuous polling data:

# free -s 2 10 

9. To see the detailed high and low statistics for memory usage:

# free -l 

10. To get the version information:

# free -V 
Related Post