linux 檢視cpu個數

2021-10-06 02:10:53 字數 702 閱讀 3050

cpu總核數= 物理cpu個數 * 每顆物理cpu的核數 

總邏輯cpu數= 物理cpu個數 * 每顆物理cpu的核數 * 超執行緒數

檢視cpu資訊(型號)

[root@instance-4g0vzqm8 nginx]# cat /proc/cpuinfo | grep name | cut -f2 -d: | uniq -c

1  intel(r) xeon(r) gold 6148 cpu @ 2.40ghz

# 檢視物理cpu個數

[root@instance-4g0vzqm8 nginx]# cat /proc/cpuinfo| grep "physical id"| sort| uniq| wc -l

# 檢視每個物理cpu中core的個數(即核數)

[root@instance-4g0vzqm8 nginx]# cat /proc/cpuinfo| grep "cpu cores"| uniq

cpu cores       : 1

# 檢視邏輯cpu的個數

[root@instance-4g0vzqm8 nginx]# cat /proc/cpuinfo| grep "processor"| wc -l

Linux下檢視CPU個數

幾個cpu more proc cpuinfo grep physical id uniq wc l 每個cpu是幾核 假設cpu配置相同 more proc cpuinfo grep physical id grep 0 wc l cat proc cpuinfo grep processor 1...

Linux系統下如何檢視CPU個數

檢視邏輯cpu個數 cat proc cpuinfo grep processor sort u wc l 24檢視物理cpu個數 grep physical id proc cpuinfo sort u wc l 2 grep physical id proc cpuinfo sort u phy...

linux下檢視cpu物理個數和邏輯個數

輸入命令cat proc cpuinfo 檢視physical id有幾個,如果結果顯示只有0,所以只有乙個物理cpu 檢視processor有幾個,如果結果顯示有0和1兩個,所以有兩個邏輯cpu。一 概念 物理cpu 實際server中插槽上的cpu個數 物理cpu數量,可以數不重複的 physi...