• Skip to primary navigation
  • Skip to main content
  • Skip to primary sidebar
  • Skip to footer navigation

The Geek Diary

  • OS
    • Linux
    • CentOS/RHEL
    • VCS
  • Interview Questions
  • Database
    • MariaDB
  • DevOps
    • Docker
    • Shell Scripting
  • Big Data
    • Hadoop
    • Cloudera
    • Hortonworks HDP

free Command Examples in Linux

by admin

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]

free command examples in Linux

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 

Filed Under: Linux

Some more articles you might also be interested in …

  1. 10 Sed (Stream Editor) Command Examples
  2. How to remove bonding Network configuration in CentOS/RHEL
  3. Understanding SELinux File Labelling and SELinux Context
  4. lvextend: command not found
  5. CentOS / RHE 7 : How to Prevent Users from Using the Last 10 Passwords
  6. CentOS / RHEL 7 : How to enable telnet for a group of users
  7. raspistill: command not found
  8. fastfetch: A CLI tool to display information about your operating system, software and hardware
  9. RHEL 7 – RHCSA Notes – System documentation including man, info, and files in /usr/share/doc
  10. How to configure DM-Multipath from an iSCSI initiator to an iSCSI target in CentOS / RHEL

You May Also Like

Primary Sidebar

Recent Posts

  • “glab issue” Command Examples
  • “glab auth” Command Examples
  • “glab alias” Command Examples
  • gixy Command Examples

© 2023 · The Geek Diary

  • Archives
  • Contact Us
  • Copyright