The fastest way to find your computer specs

The quickest route depends on your operating system. On Windows, right-click "This PC" or "My Computer" and select Properties to see your processor, RAM, and operating system in one screen. On Mac, click the Apple menu, select "About This Mac," and you get the same core information when ready. On Linux, open a terminal and type uname -a for basic specs or lsb_release -a for your Linux version.

These built-in tools show you what you need most often: how much memory you have, what processor runs your machine, and which operating system version is installed. You do not need third-party software for this — your computer already has what you need.

Key Takeaways

  • Windows users can right-click "This PC" and select Properties to see processor, RAM, and OS version without opening any other program.
  • Mac users find the same information by clicking the Apple menu and selecting "About This Mac."
  • Linux users can type uname -a in a terminal to see processor architecture and kernel version.
  • For detailed hardware information like storage capacity and graphics card, you need to dig deeper into system settings or use built-in diagnostic tools.

Finding specs in Windows 10 and Windows 11

Right-click on "This PC" in File Explorer and select Properties. A window opens showing your processor name, installed RAM, and Windows version. This tells you whether you have an Intel or AMD chip, how many gigabytes of memory are installed, and whether you are running Windows 10 or 11.

For more detail, open Settings, go to System, then About. You will see your device name, processor, RAM, system type (32-bit or 64-bit), and the exact Windows build number. If you need to know your storage capacity, go to Settings > System > Storage and you will see how much space your hard drive or solid-state drive holds and how much is currently in use.

To check your graphics card, right-click on the desktop and look for an option like "NVIDIA Control Panel" or "AMD Radeon Settings" if you have a dedicated graphics card. If you do not see either, you have integrated graphics built into your processor. Open Device Manager by pressing Windows key + X and selecting Device Manager, then expand "Display adapters" to see your graphics hardware listed.

Finding specs on a Mac

Click the Apple menu in the top-left corner and select "About This Mac." A window appears showing your Mac model, processor, memory, graphics card, and macOS version. This is the primary place to look for what your machine contains.

For storage information, click "System Report" in that same window, then select Storage on the left side. You will see your hard drive or SSD capacity and how much space is currently used. The System Report also breaks down your memory type, your processor speed in gigahertz, and your graphics card details if you have a dedicated one.

Finding specs on Linux

Open a terminal and type uname -a to see your kernel version, processor architecture, and operating system name. This command shows whether you are running a 32-bit or 64-bit system and what Linux kernel version is installed.

For more detailed information, type cat /proc/cpuinfo to see your processor model and core count, or free -h to see your total RAM and how much is currently in use. To check your storage, type df -h and you will see all mounted drives and their capacity. If you want to know your Linux distribution name and version, type lsb_release -a or cat /etc/os-release.

What each spec means and why it matters

Processor (CPU) is the chip that runs your programs. Common names are Intel Core i5, i7, or AMD Ryzen 5, 7. A newer or higher-numbered processor generally runs software faster. RAM (memory) is measured in gigabytes and determines how many programs you can run smoothly at once. Most modern computers have between 8 and 16 gigabytes; less than 8 can slow you down if you multitask.

Storage is your hard drive or SSD capacity — how much total space you have for files, programs, and your operating system. Graphics card matters if you play games, edit video, or do 3D work; integrated graphics (built into your processor) handle everyday tasks like web browsing and word processing. Operating system version tells you whether your machine can run new software and whether you are receiving security updates.

When you need to dig deeper

If you need information beyond what the basic tools show — like your motherboard model, power supply wattage, or exact RAM speed — Windows has a built-in tool called System Information. Press Windows key + R, type msinfo32, and press Enter. A detailed list opens showing hardware components, memory slots, and BIOS version.

On Mac, the System Report (accessed through About This Mac) gives you the same level of detail. On Linux, commands like dmidecode (run with sudo) and lshw show motherboard and component information, though these require terminal access and sometimes administrator permission.

Checking specs before buying software or upgrades

Before you install a new program, check its system requirements against your specs. Most software lists a minimum processor type, RAM amount, and operating system version. If your computer falls short, the program may not run or will run very slowly. Knowing your exact specs prevents wasted downloads and frustration.

If you are considering a hardware upgrade like adding more RAM or replacing your hard drive with an SSD, your current specs tell you what is possible. Some laptops have soldered memory that cannot be upgraded; knowing this before you buy saves money and disappointment. Your processor and motherboard determine what RAM type and speed you can add, so check your specs first.

Frequently Asked Questions

How do I know if my computer is 32-bit or 64-bit?

On Windows, right-click This PC and select Properties; look for "System type." On Mac, open About This Mac and check whether it says "Intel" or "Apple Silicon" — all modern Macs are 64-bit. On Linux, type uname -m in a terminal; if it shows x86_64 or aarch64, you have 64-bit; if it shows i686, you have 32-bit.

What is the difference between RAM and storage?

RAM is temporary memory your computer uses while programs are running; it clears when you shut down. Storage is permanent space on your hard drive or SSD where files and programs live. You need enough of both — low RAM slows multitasking, and low storage prevents you from installing programs or saving files.

Can I upgrade my processor?

On most laptops, no — the processor is soldered to the motherboard. On desktop computers, you can replace the processor if your motherboard supports the new chip. Check your motherboard model (found in System Information on Windows or System Report on Mac) and look up whether it accepts newer processors before you buy.

Why does my computer show less RAM than I installed?

On 32-bit systems, the operating system cannot recognize more than about 3.2 gigabytes of RAM even if you have more installed. If you installed 8 gigabytes but see only 3, your system is 32-bit. Upgrading to 64-bit Windows or a 64-bit Linux distribution will recognize all your memory.

Where do I find my graphics card model?

On Windows, right-click the desktop and look for NVIDIA or AMD software, or open Device Manager (Windows key + X), expand "Display adapters," and look at the name listed. On Mac, click About This Mac and check the Graphics line. On Linux, type lspci | grep -i vga in a terminal to see your graphics hardware.