Linux下檢視CPU資訊, 包括位數和多核資訊

2021-06-27 23:04:55 字數 1917 閱讀 5095

以redhat6.0為例:

檢視當前作業系統發行版資訊

#cat /etc/issue

red hat enterprise linux server release 6.0 (santiago)

kernel \r on an \m

檢視cpu型號

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

16  amd opteron(tm) processor 6134

(看到有16個邏輯cpu, 也知道了cpu型號)

檢視物理cpu顆數

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

2 physical id    : 0

(說明實際上是1顆2核的cpu)

檢視cpu執行模式

# getconf long_bit

(說明當前cpu執行在64bit模式下, 但不代表cpu不支援64bit)

檢視cpu是否支援64bit

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

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

檢視cpu資訊概要(昨天看aix的時候剛發現的,在ubuntu上竟然也有~):

#lscpu

architecture:          x86_64   //架構x86_64

cpu op-mode(s):        64-bit   //支援64位

cpu(s):                16       //邏輯cpu顆數是16

thread(s) per core:    1        //每個核心執行緒數是1

core(s) per socket:    8        //每個cpu插槽核數/每顆物理cpu核數是8

cpu socket(s):         2        //cpu插槽數是2

numa node(s):          4        // 使眾多伺服器像單一系統那樣運轉(具體google一下)

vendor id:             authenticamd   //cpu廠商id是authenticamd

cpu family:            16             //cpu系列是16

model:                 9              //型號9

stepping:              1              //步進是1

cpu mhz:               2300.008       //cpu主頻是2300.008mhz

virtualization:        amd-v          //cpu支援的虛擬化技術amd-v

l1d cache:             64k            //一級快取64k(這具體表示表示cpu的l1資料快取為64k)

l1i cache:             64k            //一級快取64k(具體為l1指令快取為64k)

l2 cache:              512k           //二級快取512k

l3 cache:              5118k          //二級快取5118k

numa node0 cpu(s):     0,2,4,6

numa node1 cpu(s):     8,10,12,14

numa node2 cpu(s):     9,11,13,15

numa node3 cpu(s):     1,3,5,7

最後來個大而全的:

#cat /proc/cpuinfo

Linux下檢視CPU資訊, 包括位數和多核資訊

1.檢視linux的作業系統和硬體cpu位數 linux 作業系統的位數檢視 getconf long bit如果是32表示是32位 eg root db getconf long bit 32 root db getconf word bit 32或者通過cat proc cpuinfo也可以檢視...

linux下檢視CPU資訊

出處 echo logical cpu number 邏輯cpu個數 cat proc cpuinfo grep processor wc l echo physical cpu number 物理cpu個數 cat proc cpuinfo grep physical id sort uniq w...

Linux下檢視CPU資訊

linux下如何檢視cpu資訊,包括位數和多核資訊 uname a linux euis1 2.6.9 55.elsmp 1 smp fri apr 20 17 03 35 edt 2007 i686 i686 i386 gnu linux 檢視當前作業系統核心資訊 cat etc issue gr...