How to Find My Processor Architecture?

Depending on your operating system, you can take the following actions to find out if your computer is running an ARM or x86 architecture:


On Windows

  1. Check Using System Information:

    • Press Windows + R, type msinfo32, and press Enter.
    • Look for the entry labeled "System Type":
      • x86-based PC: Your system is 32-bit x86.
      • x64-based PC: Your system is 64-bit x86.
      • ARM-based PC: Your system is ARM.


  1. Check via Command Prompt:

    • Open the Command Prompt (search for cmd in the Start menu).
    • Type:

      echo %PROCESSOR_ARCHITECTURE%
    • Output:
      • AMD64: 64-bit x86.
      • x86: 32-bit x86.
      • ARM64: ARM architecture.

On Linux

  1. Check Using the Terminal:

    • Open a terminal and run:
      uname -m


  1. Using lscpu:

    • Run the command:

      lscpu
    • Look for the "Architecture" field.



Comments

Popular posts from this blog

[SUPER EASY] HOW TO INSTALL GOOGLE CHROME IN KALI LINUX IN ONE COMMAND.

[2022 update] How To Install Kali Linux as Secondary OS/Dual Boot, With Windows.7/8.1/10/11.