Understanding Memory Utilization in Linux

26 / Aug / 2016 by Nitin Bhadauria 6 comments

Linux is an awesome operating system. It performs good with fewer resources and tries to maximize utilization of available resources automatically and because of this, it’s slightly difficult to understand resource utilization.

Image result for linux

Linux comes with many commands to check memory usage. The “free” command usually displays the total amount of free and used physical and swap memory in the system, as well as the buffers used by the kernel. The “top” command provides a dynamic real-time view of a running system. The top command can display system summary information as well as a list of the process currently being managed by the Linux kernel.

We will use free and top to understand the memory utilization of our operating system.

the free command comes with the set of options you can choose to modify the results, like with option “-m” result will display memory in MegaByte. you can read more about options on the manpage.

Let’s see the below example and understand:free

In this example, total memory is 11901 MB, 8957 MB is used and 2943 MB free. But that does not just mean that application now can only request for 2943 MB free memory, If you look at the usage figures you can see that 5941 MB memory use is for buffers and cache. So, if applications request memory, then Linux OS will free up the buffers and cache to yield memory for the new application requests. So, a question arises, why to cache and buffer at the first place?

Linux by default tries to use RAM in order to speed up disk operations by making use of available memory for creating buffers (file system metadata) and cache (pages with actual contents of files or block devices), helping the system to run faster because disk information is already in memory which saves I/O operations.

Now, let us understand the memory utilization by processes, we will use “top” command to get the required information. “top” comes with a lot of information by default, but to get all the information we needed we will add two more columns CODE and DATA. please read more about modifying default behavior of top command on the manpage.

In the above example let’s discuss first process “Xorg”. The important  tables for memory to look are %MEM, VIRT, RES, SHR, CODE, DATA.

%MEM is directly related to RES, it’s the percentage use of total physical memory by the process.
VIRT is the total memory that this process has access to shared memory, mapped pages, swapped out pages, etc.
RES is the total physical memory used shared or private that the process has access to.
SHR is the total physical shared memory that the process has access to.
DATA is the total private memory mapped to process physical or not.
CODE also known as “text resident set” is total physical memory used to load application code.

So, to sum up, RES is most close to the memory used by the process in memory, excluding what’s swapped out. but keep in mind that includes the SHR (shared physical memory) which mean it could have been used by some other process as well.

This is just a brief introduction about memory utilization in Linux. I will soon be making a screencast explaining all of these concepts in depth.

FOUND THIS USEFUL? SHARE IT

comments (6)

  1. OMAR FAROOQ

    Thank you for this article, it is very succinct and cogent, with a lot of useful information to clear up many misconceptions

    Reply
  2. Amin

    As someone who has been using Linux for almost a year (not a total beginner), I should say that it was kinda ambiguous and difficult to understand. for example this;
    “VIRT is the total memory that this process has access to shared memory, mapped pages, swapped out pages, etc.”
    Is the reader really expected to know all these terms?

    Reply
    1. Nitin Bhadauria

      I understand your concern and you are absolutely right memory utilization is difficult to understand and that’s the idea of this blog, you will not get actual memory used by an application very easily.

      Again quoting from my blog:
      “So, to sum up, RES is most close to the memory used by the process in memory, excluding what’s swapped out. but keep in mind that includes the SHR (shared physical memory) which mean it could have been used by some other process as well.”

      Reply

Leave a Reply

Your email address will not be published. Required fields are marked *