How do I show the free memory on a Linux system?
You can show free memory on a Linux system with the free command, like this:
free
That command returns results like this:
total used free shared buffers cached
Mem: 8145044 8097552 47492 0 74252 1189464
-/+ buffers/cache: 6833836 1311208
Swap: 12578884 6205424 6373460
If you prefer to see information in MB you can use the -m parameter, like this: