Windows XP Windows 7 Windows 2003 Windows Vista Windows教程綜合 Linux 系統教程
Windows 10 Windows 8 Windows 2008 Windows NT Windows Server 電腦軟件教程
 Windows教程網 >> Linux系統教程 >> Linux系統常見問題解答 >> Linux下獲得CPU的信息

Linux下獲得CPU的信息

日期:2017/1/20 17:42:41      編輯:Linux系統常見問題解答
1、查看物理cpu個數 cat /proc/cupinfo |grep 'physical id'|sort|uniq|wc -l 2、查看一個cpu的物理核數 cat /proc/cupinfo |grep 'core id'|sort|uniq -c|wc -l 或 cat /proc/cupinfo |grep 'cpu cores'|uniq|awk -F ":" '{print $2}' 3、查看一個cpu的邏輯核數 cat /proc/cupinfo |grep 'siblings'|uniq|awk -F ":" '{print $2}' 4、查看邏輯核的總數量 物理核數量是1和2得出結果的乘積; cat /proc/cupinfo |grep 'processor'|sort|uniq -c|wc -l 5、查看cpu型號 cat /proc/cupinfo |grep name|cut -f2 -d:|uniq -c 6、# cat /proc/cpuinfo | grep physical | uniq -c 4 physical id : 0 4 physical id : 1 說明有兩個cpu,每個cpu的邏輯核是4個(物理核是2個)
Copyright © Windows教程網 All Rights Reserved