There are different commands to check Memory usage in Linux. The free command displays the total amount of free and used physical and swap memory in the system. The vmstat command reports information about processes, memory paging and cpu activity.
Depends on our requirement run the following commands to get desired output.
/proc/meminfo
The /proc/meminfo file stores statistics about memory usage on the Linux system.
Example: use the cat command or grep command to see /proc/meminfo file:
# cat /proc/meminfo
Sample outputs:
MemTotal : 9120570 kB
MemFree : 3378742 kB
Cached : 2108250 kB
SwapCached : 0 kB
Swap Total : 18382450 KB
SwapFree : 17980704 kB
Free Command
To display free memory size in MB (megabytes):
# free -m
Sample outputs:
total used free shared buffers cached
Mem : 950 850 325 0 35 555
-/+ buffers/cache : 485 695
Swap : 995 0 998
Below command will show a line containing the totals memory in MB:
# free -t -m
Sample outputs:
total used free shared buffers cached
Mem : 950 850 325 0 35 555
-/+ buffers/cache : 485 695
Swap : 995 0 998
Total : 1940 850 1320 0 35 555
For any query please contact me by mail my email ID is - sashwatkatore@gmail.com.
Depends on our requirement run the following commands to get desired output.
/proc/meminfo
The /proc/meminfo file stores statistics about memory usage on the Linux system.
Example: use the cat command or grep command to see /proc/meminfo file:
# cat /proc/meminfo
Sample outputs:
MemTotal : 9120570 kB
MemFree : 3378742 kB
Cached : 2108250 kB
SwapCached : 0 kB
Swap Total : 18382450 KB
SwapFree : 17980704 kB
Free Command
To display free memory size in MB (megabytes):
# free -m
Sample outputs:
total used free shared buffers cached
Mem : 950 850 325 0 35 555
-/+ buffers/cache : 485 695
Swap : 995 0 998
Below command will show a line containing the totals memory in MB:
# free -t -m
Sample outputs:
total used free shared buffers cached
Mem : 950 850 325 0 35 555
-/+ buffers/cache : 485 695
Swap : 995 0 998
Total : 1940 850 1320 0 35 555
For any query please contact me by mail my email ID is - sashwatkatore@gmail.com.