linux cpu型號(hào)如何查看
linux cpu型號(hào)如何查看
我的電腦是linux cpu,想要查看一下它的型號(hào)!用什么方法去查看呢?下面由學(xué)習(xí)啦小編給你做出詳細(xì)的linux cpu型號(hào)查看方法介紹!希望對(duì)你有幫助!
linux cpu型號(hào)查看方法一
可以通過(guò) top 命令來(lái)查看 CPU 使用狀況。運(yùn)行 top 命令后,CPU 使用狀態(tài)會(huì)以全屏的方式顯示,并且會(huì)處在對(duì)話的模式 -- 用基于 top
的命令,可以控制顯示方式等等。退出 top 的命令為 q (在 top 運(yùn)行中敲 q 鍵一次)。
top詳解如下:
1.作用
top命令用來(lái)顯示執(zhí)行中的程序進(jìn)程,使用權(quán)限是所有用戶。
2.格式
top [-] [d delay] [q] [c] [S] [s] [n]
3.主要參數(shù)
d:指定更新的間隔,以秒計(jì)算。
q:沒(méi)有任何延遲的更新。如果使用者有超級(jí)用戶,則top命令將會(huì)以最高的優(yōu)先序執(zhí)行。
c:顯示進(jìn)程完整的路徑與名稱(chēng)。
S:累積模式,會(huì)將己完成或消失的子行程的CPU時(shí)間累積起來(lái)。
s:安全模式。
i:不顯示任何閑置(Idle)或無(wú)用(Zombie)的行程。
n:顯示更新的次數(shù),完成后將會(huì)退出top。
linux cpu型號(hào)查看方法二
cat /proc/cpuinfo中的信息
processor 邏輯處理器的id。
physical id 物理封裝的處理器的id。
core id 每個(gè)核心的id。
cpu cores 位于相同物理封裝的處理器中的內(nèi)核數(shù)量。
siblings 位于相同物理封裝的處理器中的邏輯處理器的數(shù)量。
1 查看物理CPU的個(gè)數(shù)
#cat /proc/cpuinfo |grep "physical id"|sort |uniq|wc –l
2、 查看邏輯CPU的個(gè)數(shù)
#cat /proc/cpuinfo |grep "processor"|wc –l
3、 查看CPU是幾核
#cat /proc/cpuinfo |grep "cores"|uniq
4、 查看CPU的主頻
#cat /proc/cpuinfo |grep MHz|uniq
5、 # uname -a
6、 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)核信息)
7、 # cat /etc/issue | grep Linux
8、 Red Hat Enterprise Linux AS release 4 (Nahant Update 5(查看當(dāng)前操作系統(tǒng)發(fā)行版信息)
9、 # 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))
9 # cat /proc/cpuinfo | grep physical | uniq -c
4 physical id : 0
4 physical id : 1
(說(shuō)明實(shí)際上是兩顆4核的CPU)
10、# getconf LONG_BIT
32
(說(shuō)明當(dāng)前CPU運(yùn)行在32bit模式下, 但不代表CPU不支持64bit)
11、# cat /proc/cpuinfo | grep flags | grep ' lm ' | wc –l
8(結(jié)果大于0, 說(shuō)明支持64bit計(jì)算. lm指long mode, 支持lm則是64bit)
12、如何獲得CPU的詳細(xì)信息:
linux命令:cat /proc/cpuinfo
13、用命令判斷幾個(gè)物理CPU,幾個(gè)核等:
邏輯CPU個(gè)數(shù):
# cat /proc/cpuinfo | grep "processor" | wc -l
物理CPU個(gè)數(shù):
# cat /proc/cpuinfo | grep "physical id" | sort | uniq | wc -l
14、每個(gè)物理CPU中Core的個(gè)數(shù):
# cat /proc/cpuinfo | grep "cpu cores" | wc -l
15、是否為超線程?如果有兩個(gè)邏輯CPU具有相同的”core id”,那么超線程是打開(kāi)的。每個(gè)物理CPU中邏輯CPU(可能是core, threads或both)的個(gè)數(shù):
# cat /proc/cpuinfo | grep "siblings"
1.查看CPU信息命令
cat /proc/cpuinfo
2.查看內(nèi)存信息命令
cat /proc/meminfo
3.查看硬盤(pán)信息命令
fdisk -l
查看CPU信息(型號(hào))
# 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)
PS:Jay added on 10th, May, 2011
# 其實(shí)是可能有超線程HT技術(shù),不一定是有4核,也可能是2核4線程;當(dāng)時(shí)還理解不清楚
# 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)
再完整看cpu詳細(xì)信息, 不過(guò)大部分我們都不關(guān)心而已.
# dmidecode | grep 'Processor Information'
查看內(nèi) 存信息
# cat /proc/meminfo
# 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ā)行版信息)
查看機(jī)器型號(hào)
# dmidecode | grep "Product Name"
查看網(wǎng)卡信息
# dmesg | grep -i eth
看了“linux cpu型號(hào)如何查看 ”文章的還看了: