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!

  • 相关阅读:
    数据结构-串的堆分配存储
    ServerSocket
    Java-坦克大战
    Java-输入输出流
    MyEclipse 快捷键
    数据结构-串的定长顺序存储
    我的软考资料集合
    软考中级软件设计师考试大纲
    2016年第一季度阅读书目
    中国大陆开源镜像网站汇总
  • 原文地址:https://www.cnblogs.com/lexus/p/2328813.html
Copyright © 2011-2022 走看看