How to clear swap memory on UNIX OS

  1. Run free -m command to see current memory stats.

  2. Run sudo swapoff -a command to disable swap memory.

  3. Wait for ~30 seconds for swap data to be moved back into RAM.

  4. Run sudo swapon -a command to enable swap memory.

  5. Run free -m command to see the new memory stats.