zoukankan      html  css  js  c++  java
  • Linux Find If Processor / CPU is 64 bit / 32 bit ( long mode ~ lm )

    http://www.cyberciti.biz/faq/linux-how-to-find-if-processor-is-64-bit-or-not/

    Linux Find If Processor / CPU is 64 bit / 32 bit ( long mode ~ lm )

    by Vivek Gite on April 30, 2006 · 52 comments

    How do I determine if my CPU is 64bit or not under Linux operating systems?

    You need to use the uname command, which prints system information including kernel version and whether kernel is 32 bit or 64 bit. You need to run the less /proc/cpuinfo command to determine if CPU is 64 bit or not.

    Example - Find Out If Running Kernel Is 32 Or 64 Bit

    Type the following command at the terminal, run:
    $ uname -a
    Output:

    Linux ora100 2.6.5-7.252-smp #1 SMP Tue Feb 14 11:11:04 UTC 2006 x86_64 x86_64 x86_64 GNU/Linux

    x86_64 GNU/Linux indicates that you've a 64bit Linux kernel running. If you use see i386/i486/i586/i686 it is a 32 bit kernel.

    How Do I Find Out CPU is 32bit or 64bit?

    Simply type the following command and if you see lm in output, you have a 64 bit CPU based system:
    $ grep flags /proc/cpuinfo
    Output:

    flags           : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe nx lm constant_tsc pni monitor ds_cpl vmx est tm2 ssse3 cx16 xtpr lahf_lm
    flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe nx lm constant_tsc pni monitor ds_cpl vmx est tm2 ssse3 cx16 xtpr lahf_lm
    flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe nx lm constant_tsc pni monitor ds_cpl vmx est tm2 ssse3 cx16 xtpr lahf_lm
    flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe nx lm constant_tsc pni monitor ds_cpl vmx est tm2 ssse3 cx16 xtpr lahf_lm

    (Scroll to see all flags)

    CPU Modes:

    • lm flag means Long mode cpu - 64 bit CPU
    • Real mode 16 bit CPU
    • Protected Mode is 32-bit CPU

    See also:

    Updated for accuracy!

  • 相关阅读:
    关于UI设计的文章汇总
    Linq 中不爽之处
    难题autoconf、automake、libtool
    静态构造函数线程安全的几个版本[转载]
    Window Live Writer
    Guid、Int、BigInt编号的速度和存储空间的比较
    MVP模式中的P和V关系
    LR 剖析器
    快速软件开发 学习笔记 之七
    快速软件开发 学习笔记 之六
  • 原文地址:https://www.cnblogs.com/lexus/p/2328813.html
Copyright © 2011-2022 走看看