我如何知道笔记本电脑中有哪种类型的CPU缓存?


8

Ubuntu是否有一个应用程序可以告诉我有关CPU,CPU缓存内存,内存层次结构,系统中实现的缓存体系结构,cpu缓存大小,cpu缓存,访问周期和cpu延迟的详细信息?

它可以是GUI或CLI。我更喜欢Ubuntu Repos中的应用程序

Answers:


8

打开您的终端并输入

cat  /proc/cpuinfo

输出示例:

 processor  : 0
vendor_id   : GenuineIntel
cpu family  : 15
model       : 6
model name  : Intel(R) Pentium(R) D CPU 3.00GHz
stepping    : 5
cpu MHz     : 2400.000
cache size  : 2048 KB
physical id : 0
siblings    : 2
core id     : 0
cpu cores   : 2
apicid      : 0
initial apicid  : 0
fdiv_bug    : no
hlt_bug     : no
f00f_bug    : no
coma_bug    : no
fpu     : yes
fpu_exception   : yes
cpuid level : 6
wp      : yes
flags       : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe nx lm constant_tsc pebs bts pni dtes64 monitor ds_cpl est cid cx16 xtpr pdcm lahf_lm
bogomips    : 5983.63
clflush size    : 64
cache_alignment : 128
address sizes   : 36 bits physical, 48 bits virtual
power management:

processor   : 1
vendor_id   : GenuineIntel
cpu family  : 15
model       : 6
model name  : Intel(R) Pentium(R) D CPU 3.00GHz
stepping    : 5
cpu MHz     : 2400.000
cache size  : 2048 KB
physical id : 0
siblings    : 2
core id     : 1
cpu cores   : 2
apicid      : 1
initial apicid  : 1
fdiv_bug    : no
hlt_bug     : no
f00f_bug    : no
coma_bug    : no
fpu     : yes
fpu_exception   : yes
cpuid level : 6
wp      : yes
flags       : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe nx lm constant_tsc pebs bts pni dtes64 monitor ds_cpl est cid cx16 xtpr pdcm lahf_lm
bogomips    : 5983.48
clflush size    : 64
cache_alignment : 128
address sizes   : 36 bits physical, 48 bits virtual
power management:

3

lstopo是显示安装时使用的CPU高速缓存和逻辑CPU布局的有用工具:

sudo apt-get install hwloc

然后:

lstopo

lstopo输出

或者,如果没有图形输出,请使用:

lstopo -

并且您得到诸如:

Machine (5695MB)
  Socket L#0 + L3 L#0 (3072KB)
    L2 L#0 (256KB) + L1 L#0 (32KB) + Core L#0
      PU L#0 (P#0)
      PU L#1 (P#1)
    L2 L#1 (256KB) + L1 L#1 (32KB) + Core L#1
      PU L#2 (P#2)
      PU L#3 (P#3)
  HostBridge L#0
    PCI 8086:0166
      GPU L#0 "card0"
      GPU L#1 "controlD64"
    PCI 8086:1502
      Net L#2 "eth1"
    PCIBridge
      PCI 10ec:8176
        Net L#3 "wlan1"
    PCI 8086:1e03

2

我能做命令行。我将使用GUI之一:

sudo apt-get install sysinfo

在此处输入图片说明

安装后

在此处输入图片说明 通过软件中心安装


嗨,林兹温德,兄弟,我又添加了一张图片来改善它,希望您不要介意。:d
rɑːdʒɑ
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.