Go Back   The UNIX and Linux Forums > Operating Systems > Linux > Red Hat


Red Hat Red Hat is the world's leading open source technology solutions provider with offerings including Red Hat Enterprise Linux (RHEL), Fedora, open source applications, security and systems management, virtualization, and Services Oriented Architecture (SOA) solutions.

Reply    
 
Thread Tools Search this Thread Display Modes
    #1  
Old 01-17-2013
Registered User
 
Join Date: Dec 2012
Posts: 65
Thanks: 3
Thanked 0 Times in 0 Posts
Concept of free –m command in Linux

I wanted to know the concept of free –m command as there are different rows of Mem, -/+ buffers/cache & Swap in the output. As an example, it is showing 195 as free Mem in my server but 13850 in the free section of the -/+ buffers/cache row. The output needs in depth knowledge of the different parameters of the command.

I hope, my question is clear.

Please revert with the reply to my query.

Regards
Sponsored Links
    #2  
Old 01-20-2013
Registered User
 
Join Date: Jan 2005
Posts: 64
Thanks: 0
Thanked 5 Times in 5 Posts

Code:
             total       used       free     shared    buffers     cached
Mem:          3816       3569        247          0        118       2397
-/+ buffers/cache:       1053       2763
Swap:         3823         13       3810

ok, this is the output for my laptop.

The free command is used to display the amount of free and used memory on a system. The -m option tells free to print the output in MB.

My laptop has 4Gb currently.

Linux attempts to utilize all of the memory on the system and not leave any sitting idle, like some other operating systems have done over time. Memory will be used for the OS and applications, but the remainder will be used as "buffers and cache". The kernel will keep items in memory that are needed often or are predicted to be needed for faster access. The memory used for "buffers and cache" is available for applications or the OS to use. If required, it is quickly flushed and used.

To find the actual available memory on my system, take the last number on the Mem line (247) and add it to the last number on the Mem line (2397). So currently, I have about 3G of memory available.

Most of this information is available via the manpage and simple google searches. Take a look and you should have all of your questions answered.
Sponsored Links
    #3  
Old 01-21-2013
Registered User
 
Join Date: Dec 2012
Posts: 65
Thanks: 3
Thanked 0 Times in 0 Posts
Thanks for your answer. I wanted to add something, if we add 118 to the total of 2397 & 247, it would be 2762 which is very near the free memory on line 2, 2763. Please confirm on this.

Also, as per your answer, the architecture of Linux is to utilize all the memory on the system.
    #4  
Old 01-21-2013
Registered User
 
Join Date: Aug 2011
Location: Ripon, North Yorkshire
Posts: 146
Thanks: 4
Thanked 13 Times in 13 Posts
the line +/- buffers/cache basically shows the memory used and free without taking into account how much is used for buffers or cache.

This is because cached memory is not actually used memory, it is information that is stored for quick retrieval if requested again from previous operations but dumped straight away if memory is required to be written to. This process makes the system run quicker as queries are using data stored on RAM instead of hard disk which is obviously a much quicker process.

So yes, top line free + cached = free on 2nd line
Sponsored Links
Reply

Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

More UNIX and Linux Forum Topics You Might Find Helpful
Thread Thread Starter Forum Replies Last Post
free memory in debian linux lhareigh890 UNIX for Advanced & Expert Users 1 07-01-2011 01:08 PM
Linux free download govindts UNIX for Dummies Questions & Answers 1 04-23-2009 05:10 PM
Concept of link count in linux vaibhav.kanchan Linux 1 12-11-2008 01:28 PM
Determining free(available) memory in MV linux trancedeejay Programming 11 02-20-2006 03:56 AM
How to Use the Free Command in Linux LiTo UNIX for Dummies Questions & Answers 1 11-03-2004 07:54 PM



All times are GMT -4. The time now is 03:12 AM.