How to Check RAM Capacity on Your Computer

Knowing how much RAM your computer has is one of the most useful pieces of information you can have — whether you're troubleshooting slowdowns, deciding whether to upgrade, or just trying to understand why your system handles certain tasks the way it does. The good news: checking your RAM capacity takes less than a minute on any major operating system, and you don't need any special tools to do it.

What RAM Capacity Actually Tells You

RAM (Random Access Memory) is your computer's short-term working memory. It holds the data your processor is actively using — open apps, browser tabs, running processes. When your system runs low, it compensates by using slower storage as overflow (a process called paging or swapping), which is typically when you notice things getting sluggish.

Checking your RAM capacity tells you the total installed memory — usually expressed in gigabytes (GB). What it doesn't automatically tell you is speed, configuration (single vs. dual channel), or how many physical sticks are installed. Those details require a little more digging, which we'll cover below.

How to Check RAM on Windows 🖥️

The Quickest Method: System Settings

  1. Press Windows key + I to open Settings
  2. Go to System → About
  3. Look for Installed RAM under Device Specifications

That number is your total installed RAM. Done.

For More Detail: Task Manager

  1. Press Ctrl + Shift + Esc to open Task Manager
  2. Click the Performance tab
  3. Select Memory from the left panel

Here you'll see not just total capacity but also current usage, memory speed (in MHz), form factor (e.g., SODIMM for laptops), and how many slots are used vs. available. This is genuinely useful if you're thinking about upgrading — you can see at a glance whether you have open slots or whether an upgrade means replacing existing sticks.

Command Line Method (for advanced users)

Open Command Prompt and type:

wmic memorychip get capacity 

This returns each stick's capacity in bytes. Divide by 1,073,741,824 to convert to GB. It's more granular than the Settings panel, showing you individual module sizes rather than just the total.

How to Check RAM on macOS

System Information (the standard route)

  1. Click the Apple menu (top-left corner)
  2. Select About This Mac
  3. Your RAM is listed directly on the Overview tab as "Memory"

For More Detail: System Information App

  1. Hold Option and click the Apple menu
  2. Select System Information
  3. Click Memory in the left sidebar

On compatible Macs, this shows individual DIMM slots, the size and speed of each module, and their status. On Apple Silicon Macs (M1, M2, M3, and later), RAM is unified memory integrated directly into the chip — it won't show individual sticks because there aren't any. The total is still listed under About This Mac, but the architecture is fundamentally different from traditional upgradeable RAM.

How to Check RAM on Linux

Open a terminal and run:

free -h 

The -h flag makes the output human-readable (GB instead of kilobytes). The Mem row shows total, used, free, and available RAM.

For hardware-level detail including slot information, run:

sudo dmidecode --type memory 

This outputs detailed information about each physical memory module, including size, speed, and manufacturer.

What the Numbers Mean in Practice

Total RAMTypical Use Case
4 GBBasic web browsing, light document work
8 GBEveryday computing, moderate multitasking
16 GBPower users, moderate creative work, gaming
32 GB+Video editing, 3D rendering, heavy virtualization

These are general reference points, not guarantees. An 8 GB system running a lightweight Linux distro may feel snappier than a 16 GB system burdened with background processes and a heavy OS.

Beyond Total Capacity: The Variables That Matter

Checking RAM capacity is the starting point, but the full picture involves more variables:

  • Speed (MHz): Faster RAM moves data more quickly. Two systems with identical capacity but different speeds will perform differently under load.
  • Dual-channel vs. single-channel: Two 8 GB sticks running in dual-channel mode generally outperform one 16 GB stick, even though total capacity is the same.
  • Available slots: A laptop with 8 GB soldered to the motherboard can't be upgraded at all. A desktop with two occupied slots out of four has room to grow.
  • Operating system overhead: Windows, macOS, and Linux each consume different baseline amounts of RAM. Your usable headroom depends on what the OS itself requires.
  • Workload type: RAM-hungry tasks like video editing, running virtual machines, or keeping dozens of browser tabs open create very different pressure than light document work.

💡 Knowing your capacity is the first step — but understanding how those other factors interact with your specific workload is what determines whether your current setup is working well for you or not.

Checking RAM on Smartphones and Tablets

On Android, RAM information is typically found in Settings → About Phone → RAM or through developer options. Some manufacturers surface it more prominently than others.

On iPhone and iPad, Apple doesn't expose RAM capacity in the standard settings interface. Third-party apps can surface this information, but Apple's tight memory management means the raw number is less directly actionable than on desktop systems.


Once you've got your number, the next question is almost never about the number itself — it's about whether that number is the right fit for what you're actually doing with your machine.