Docs / Server Management / How to Monitor Memory Usage on Linux

How to Monitor Memory Usage on Linux

By Admin · Feb 25, 2026 · Updated Apr 23, 2026 · 338 views · 1 min read

Understanding memory usage helps you right-size your Breeze and troubleshoot performance issues.

Quick Overview

free -h

Key values:

  • total — total physical RAM
  • used — actively used memory
  • available — memory available for new applications (includes cache)

Detailed Process View

top

Press M to sort by memory usage. Press q to quit.

Process Memory Usage

ps aux --sort=-%mem | head -20

Understanding Linux Memory

Linux uses available RAM for disk caching. High "used" memory doesn't necessarily mean you're running out. Check the "available" column for the real picture.

Was this article helpful?