Linux free command
The Linux free command is how to go about getting an idea as to how much memory is being used by the system at a given moment in the command line and when creating bash scripts. WHen it comes to getting an idea of how much memory is being used there is not just knowing how much there is installed, and how much is being used. There is knowing how much physical memory there is, knowing how much swap space there is on the hard drive in terms of a file or partition. There is then also know what the difference is between free, and available when it comes to using the Linux free command.
When it comes to knowing how much free space I have with something the Linux free command is just a simple tool that helps me keep an eye on how much physical ram and spawn space I have. However it will not help me when it comes to creating or resizing a spawn file or spawn partition. It will also not help me to find out how much free space I have on any hard drives or other devices in which I am storing files. When it comes to checking a file system to know how much free space i have there I will want to use the df command. Also the Linux free command will not give me a break down when it comes to how much memory a certain process is using, the free command will just give me over all totals.
So in this post I will be going over a few quick examples of the Linux Free command, but I will also be touching base on a few other topics when it comes to not just checking how much free space I have in general with things, and also some other related topics when it comes to taking a look at processes and so forth.
1 - Basic Linux free examples
When it comes to using the free command one way would be to just enter the command free into the bash command prompt. The result of doing so will be a bunch of columns for total memory, used, free, shared, buffers, and available. The free amount of memory might be a bit misleading, it is not really the amount of memory that is free. A better term for it might be unused memory, as long as there is a fair amount of memory in the available column then there is still a fair amount of memory for applications.
|
|
By default the numbers given are in kibibytes AKA 1024 byte units, which is a good standard to use considering that physical memory is always in base2, rather than base 10 units. However there are a number of formating options for the free command to format the output in other units. One such option is the -h option that will format things automatically in terms of bytes and other base 2 units.
|
|
2 - The Linux ps command to get %mem for each process
There are a number of other commands that can be used to get a sense of what is going on with ram usage. The free command is a good start, but it will not give a break down when it comes to processes. The Linux ps command will give this kind of break down though when I make use of the output option of the Linux ps command.
|
|
When using the -o option with the ps command I am often going to want to use the pid, and command fields along with \%mem that will give me the percentage of memory that a process is using. If I think that I am using to much ram this is what I can use to see what is going on that might be using to much, and then take action by closing down applications I am not using, or see about making some system changes when it comes to services.
3 - The Linux df command to find out what is going on with free hard drive space
The Linux df command is the first command that comes to mind when it comes to taking a look at what is going on with free space on my file system rather than RAM. There is also the Linux du command that can be used to find out how much space a file takes up rather than what is going on with a file system as a whole.
|
|
4 - Conclusion
So the Linux free command is used to find out the current state of affairs is when it comes to physical memory and virtual memory, aka swap space. However this command is just one way to go about getting an idea of what is going on, the free command can not help when it comes to taking some kind of action when it comes to process and service management. It is also not the only thing that comes to mind when it comes to just checking the status of something, even when it comes to just memory, there is also the top command that might be a better option for tracking what is going on with ram. The top command will show what is going one with processes and display a percentage when it comes to ram use, it will also kep running rather than just pull a status at the time that it is called.