At times, we need to know precisely how a Linux system is using memory. This article explains how to interpret memory usage using the free command and, more importantly, how to correctly understand the difference between free and available memory on Linux systems.
In This Article
Free vs. Available memory explained
Contents
What exactly is free memory, and how does it differ from available memory?
Free memory is the amount of memory (RAM) that is currently not used for anything. For this reason, especially on servers, I like to consider free memory as wasted memory. Once your applications/processes have launched, and considerable uptime has passed, this number should almost always be small.
Available memory is the amount of memory that is available for allocation to new or existing processes. Available memory is then an estimation of how much memory is available for use without swapping.
The difference between free vs. available memory in Linux is that free memory is not in use and sits there doing nothing. In contrast, available memory is used memory that includes but is not limited to caches and buffers that can be freed without the performance penalty of using swap.
Free vs. Available Memory Compared
With this in mind, let’s look at two 60 GB memory Linux servers. Server A and Server B. We are going to use the go-to command: free
To view free vs. available memory in Linux, login to your server and enter the following command:
free -h
The result should look something like the two screenshots below. I also ran the uptime command to confirm that both systems have been online for some time.

Server A: Has less than 1% free (wasted memory) and 13 GB available memory.

Server B: After 153 days of uptime, 30 GB of memory is still wasted (free).
Above lies the difference between free vs. available memory in Linux. When you compare both systems, even though the load averages are similar and the systems are handling comparable workloads, it is evident that one server is making use of almost 100% of its memory (Server A). The other server is wasting more than 50% of its memory (Server B)). Note, that both of these servers have 12 CPU cores and swap to RAID 10 NVMe storage.
Note that the Linux kernel will move memory pages least frequently used into swap space even if there is available memory.
When analyzing these systems, a sysadmin may ask a few pertinent questions:
- Is swapping slowing the performance of Server A?
- Is it opportunistic swapping?
- Should we downgrade memory on server B?
- Is traffic/workload growth expected soon?
- Should Server A be upgraded with more memory?
- During peak hours during swapping, does the “load average” stay below 12.00?
- Can Server B be configured to use more buffers and cache?
These are the questions that resulted in the current state of those above servers. Each admin will have to answer those questions and others, case by case, or hire an expert to do so.
Linux Memory Management
Don’t be caught looking at “free” memory on your Linux system and jumping to conclusions because you should also consider available memory, buffers/caches, and other factors as outlined. Examine the articles listed below to gain a further understanding of these memory-related issues and possible solutions.

Be sure to measure Linux system memory usage correctly.
I’ve written some other articles on this topic that you may find helpful:
In addition to the free command, you can also use the following commands to check your Linux system’s memory usage:
- top – shows an overall system view.
- htop – interactive process viewer and manager.
- atop – For Linux server performance analysis.
- Glances and nmon – htop and top Alternatives.
- vmstat – shows system memory, processes, interrupts, paging, block I/O, and CPU info.
cat /proc/meminfoand others.
Conclusion
Free memory represents unused memory, while available memory includes caches and buffers that can be utilized without swapping, making it a more valuable resource. This difference becomes evident when comparing servers with similar workloads, as one may efficiently utilize memory while the other wastes it.
System administrators must consider factors like swapping, memory upgrades, workload growth, and cache optimization when managing Linux memory effectively. Jumping to conclusions based solely on “free” memory can lead to suboptimal decisions. To gain a holistic view of memory usage, it’s essential to consider available memory along with other metrics and tools like top, htop, vmstat, and more.
Careful analysis of Linux memory is key to maintaining optimal system performance!
Published: September 7th, 2021 | Last updated: Jan 27th, 2026






