How to Find Out What RAM You Have (Windows, Mac & More)

Knowing how much RAM your computer has — and what type it is — takes less than a minute once you know where to look. Whether you're troubleshooting slowdowns, checking if your system meets software requirements, or considering an upgrade, here's exactly how to find your RAM details on any major platform.

What RAM Information Is Worth Knowing?

Before diving into the steps, it helps to understand what you're actually looking for. RAM (Random Access Memory) has several specs that matter in different situations:

  • Capacity — measured in gigabytes (GB); the most commonly referenced figure
  • Speed — measured in MHz or MT/s (e.g., DDR4-3200); affects how fast data moves in and out of memory
  • Type — DDR3, DDR4, or DDR5; determines upgrade compatibility
  • Number of slots used vs. available — critical if you're planning to add more

Most casual users only need capacity. If you're upgrading or replacing RAM, you'll want the type and speed too.

How to Check RAM on Windows 🖥️

Quick Method: Task Manager

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

You'll see total RAM, how much is currently in use, the speed, and the number of slots used. This is the fastest method for most people.

For More Detail: System Information

  1. Press Windows + R, type msinfo32, and press Enter
  2. Under System Summary, find the Installed Physical Memory (RAM) row

This gives you capacity but not speed or type. For full specs, Task Manager is actually more informative.

Even More Detail: CPU-Z (Free Third-Party Tool)

If you need to know the exact RAM type, timings, and manufacturer, a free tool called CPU-Z reads this directly from your hardware. It's widely used and safe. Under the Memory and SPD tabs, you'll find everything — including what's physically installed in each slot.

Command Line Method

Open Command Prompt and run:

wmic memorychip get capacity, speed, memorytype, partnumber 

This outputs raw data for each RAM stick installed. It's less readable but useful if you prefer not to install any software.

How to Check RAM on macOS 🍎

Built-In: About This Mac

  1. Click the Apple menu (top-left corner)
  2. Select About This Mac
  3. The overview screen shows your RAM capacity and type (e.g., "8 GB 2667 MHz DDR4")

This is the simplest method and covers what most users need.

More Detail: System Information

  1. From About This Mac, click System Report
  2. In the left panel, select Memory

You'll see a breakdown of each RAM slot — capacity per stick, speed, type, and manufacturer. This is especially useful if you have multiple sticks and want to know how they're configured.

How to Check RAM on Linux

Open a terminal and run:

free -h 

This shows total, used, and available RAM in a human-readable format. For detailed hardware info including type and speed, run:

sudo dmidecode --type memory 

This outputs per-slot details similar to macOS's System Information view.

What the Numbers Actually Mean

Once you have your RAM details, here's a quick reference for what the specs tell you:

SpecWhat It Tells YouWhy It Matters
Capacity (GB)Total memory availableAffects multitasking and performance
Type (DDR3/4/5)Generation of RAMMust match your motherboard
Speed (MHz/MT/s)Data transfer rateHigher = faster, but must be supported
Slots usedHow many sticks installedShows room for expansion
Single vs. dual channelWhether sticks are pairedPaired sticks offer better performance

Laptop vs. Desktop: One Key Difference

On desktop PCs, RAM slots are usually visible and accessible — you can add or swap sticks relatively easily. On laptops, RAM is increasingly soldered directly to the motherboard, meaning what you have is what you're stuck with. Checking this before assuming an upgrade is possible is important. Your RAM details screen (particularly in CPU-Z or macOS System Information) will often show "slot" configurations that hint at whether expansion is feasible.

When "How Much RAM" Depends on More Than the Number

Eight gigabytes of RAM behaves very differently depending on what's running alongside it. A machine with 8 GB running Windows 11, a browser with 20 tabs, and a video editing app will feel sluggish — while the same 8 GB on a lightweight Linux system doing basic tasks may feel perfectly responsive. Speed and type also interact with your CPU and motherboard in ways that affect real-world performance independently of raw capacity.

What your RAM situation actually means for your specific workflow — and whether it's holding you back — comes down to your own usage patterns, operating system, and what else is competing for that memory at any given moment.