Linux下如何查看CPU信息, 包括位數和多核信息

Linux下如何查看CPU信息, 包括位數和多核信息ide

 

 

 

 

 

# uname -aui

 

Linux euis1 2.6.9-55.ELsmp #1 SMP Fri Apr 20 17:03:35 EDT 2007 i686 i686 i386 GNU/Linux操作系統

 

(查看當前操做系統內核信息)code

 

# cat /etc/issue | grep Linuxorm

 

Red Hat Enterprise Linux AS release 4 (Nahant Update 5)get

 

(查看當前操做系統發行版信息)it

 

# cat /proc/cpuinfo | grep name | cut -f2 -d: | uniq -cio

 

8 Intel(R) Xeon(R) CPU E5410 @ 2.33GHzform

 

(看到有8個邏輯CPU, 也知道了CPU型號)date

 

# cat /proc/cpuinfo | grep physical | uniq -c

 

4 physical id : 0

 

4 physical id : 1

 

(說明其實是兩顆4核的CPU)

 

# getconf LONG_BIT

 

32

 

(說明當前CPU運行在32bit模式下, 但不表明CPU不支持64bit)

 

# cat /proc/cpuinfo | grep flags | grep ' lm ' | wc -l

 

8

 

(結果大於0, 說明支持64bit計算. lm指long mode, 支持lm則是64bit)

 

.

 

.

 

最後再完整看cpu物理信息, 不過大部分咱們都不關心而已.

 

# dmidecode | grep -A48 'Processor Information$'

相關文章
相關標籤/搜索