Linux 的硬件信息命令
命令
- lspci
#lspci 查看系統(tǒng) PCI 設(shè)備
Peripheral Component Interconnect(外設(shè)部件互連標準)
lspci -v 命令可以查看更詳細的PCI設(shè)備信息忱详。
#more /proc/cpuinfo 查看CPU信息
processor:邏輯處理器唯一標識符
vendor-id:處理器類型 英特爾:GenuineIntel
physical id:每個物理封裝的唯一標識符 一個物理CPU
siblings:位于相同物理封裝中的邏輯處理器的數(shù)量
core id:每個內(nèi)核的唯一標識符
cpu cores:位于相同物理封裝中的內(nèi)核數(shù)量
查看系統(tǒng)物理CPU的個數(shù)
cat /proc/cpuinfo | grep "physical id" | sort | uniq | wc -l
查看每個物理CPU中內(nèi)核的個數(shù)
cat /proc/cpuinfo | grep "cpu cores"