您好,登錄后才能下訂單哦!
本文小編為大家詳細(xì)介紹“l(fā)inux如何查看cpu的數(shù)量”,內(nèi)容詳細(xì),步驟清晰,細(xì)節(jié)處理妥當(dāng),希望這篇“l(fā)inux如何查看cpu的數(shù)量”文章能幫助大家解決疑惑,下面跟著小編的思路慢慢深入,一起來(lái)學(xué)習(xí)新知識(shí)吧。
查看方法:1、執(zhí)行“cat /proc/cpuinfo |grep "physical id"|sort |uniq|wc -l”命令;2、執(zhí)行“cat /proc/cpuinfo |grep "processor"|wc -l”命令。
本教程操作環(huán)境:linux5.9.8系統(tǒng)、Dell G3電腦。
linux查看機(jī)器的cpu
1、查看物理CPU的個(gè)數(shù)
cat /proc/cpuinfo |grep "physical id"|sort |uniq|wc -l
2、查看邏輯CPU的個(gè)數(shù)(線程數(shù))
cat /proc/cpuinfo |grep "processor"|wc -l
3、查看CPU是幾核
cat /proc/cpuinfo |grep "cores"|uniq
4、查看CPU的主頻
cat /proc/cpuinfo |grep MHz|uniq
擴(kuò)展知識(shí):
uname -a
Linux euis1 2.6.9-55.ELsmp #1 SMP Fri Apr 20 17:03:35 EDT 2007 i686 i686 i386 GNU/Linux (查看當(dāng)前操作系統(tǒng)內(nèi)核信息)
cat /etc/issue | grep Linux
Red Hat Enterprise Linux AS release 4 (Nahant Update 5) (查看當(dāng)前操作系統(tǒng)發(fā)行版信息)
cat /proc/cpuinfo | grep name | cut -f2 -d: | uniq -c
8 Intel(R) Xeon(R) CPU E5410 @ 2.33GHz (看到有8個(gè)邏輯CPU, 也知道了CPU型號(hào))
cat /proc/cpuinfo | grep physical | uniq -c
4 physical id : 0 4 physical id : 1 (說(shuō)明實(shí)際上是兩顆4核的CPU)
getconf LONG_BIT
32 (說(shuō)明當(dāng)前CPU運(yùn)行在32bit模式下, 但不代表CPU不支持64bit)
cat /proc/cpuinfo | grep flags | grep ' lm ' | wc -l
8 (結(jié)果大于0, 說(shuō)明支持64bit計(jì)算. lm指long mode, 支持lm則是64bit)
讀到這里,這篇“l(fā)inux如何查看cpu的數(shù)量”文章已經(jīng)介紹完畢,想要掌握這篇文章的知識(shí)點(diǎn)還需要大家自己動(dòng)手實(shí)踐使用過(guò)才能領(lǐng)會(huì),如果想了解更多相關(guān)內(nèi)容的文章,歡迎關(guān)注億速云行業(yè)資訊頻道。
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。