Posts

Showing posts with the label RAM

LINUX - RAM Usage

The RAM (Random Access Memory) is an essential component of a Linux system that has to be monitored closely. In some conditions, we may run out of memory with very slow response times to our server or be completely unresponsive. Linux machine has swap file which acts as an Extra RAM for the machine Check RAM available on Machine: # free -g               total        used        free      shared  buff/cache   available Mem:             31           1          25           0           4          29 Swap:            31           1          29 Commands to check RAM usage on Linux Machines: 1) TOP command to get the  high Memory...