Results 1 to 5 of 5

Thread: [SOLVED] 32 or 64, how do you tell?

  1. #1
    Join Date
    Apr 2007
    Beans
    41

    [SOLVED] 32 or 64, how do you tell?

    When you sit down at an unfamiliar system, or just plain forgot, how do you tell whether it is running a 32 or 64-bit system?

  2. #2
    Join Date
    Jan 2008
    Location
    Santa Cruz, CA
    Beans
    147
    Distro
    Ubuntu 10.10 Maverick Meerkat

    Re: 32 or 64, how do you tell?

    You can do uname -a and it'll tell you the kernel.

  3. #3
    Join Date
    Aug 2008
    Beans
    285
    Distro
    Ubuntu 10.04 Lucid Lynx

    Re: 32 or 64, how do you tell?

    Code:
    uname -m
    That will tell you the architecture the machine is on.

    i686 for 32-bit and x86_64 for 64-bit systems.

    Code:
    uname -a
    That will show you all the kernel info for you system.

  4. #4
    Join Date
    Jun 2007
    Beans
    1,745

    Re: 32 or 64, how do you tell?

    Odds are unless it's a server it's a 32 bit system.

    Few ways to check for sure though if that's not good enough for you:
    firstly on linux
    Code:
    uname -m
    or the hardware monitor in windows should let you know.

  5. #5
    Join Date
    Apr 2007
    Beans
    41

    Re: [SOLVED] 32 or 64, how do you tell?

    Thanks to all. That was the information I needed.

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •