Como posso saber que tipo de cache de CPU está no meu laptop?

8

Existe um aplicativo para o Ubuntu que poderia me dizer detalhes sobre CPU, memória cache da CPU, hierarquia de memória, arquitetura de cache implementada no meu sistema, tamanho do cache da cpu, cache da cpu, ciclo de acesso e latência da CPU?

Pode ser GUI ou CLI. Eu prefiro um aplicativo no Ubuntu Repos

    
por malhobayyeb 07.11.2012 / 18:56

3 respostas

7

abra seu terminal e digite isto

cat  /proc/cpuinfo

Exemplo de saída:

 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:
    
por Ten-Coin 07.11.2012 / 19:01
3

O lstopo é uma ferramenta útil para mostrar o cache da CPU e o layout da CPU lógica, para instalar o uso:

sudo apt-get install hwloc

e depois:

lstopo

alternativamente sem uma saída gráfica, use:

lstopo -

e você recebe algo como:

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
    
por Colin Ian King 07.11.2012 / 21:37
2

ican fez a linha de comando. Eu vou pegar o GUI:

sudo apt-get install sysinfo

após a instalação

    
por Rinzwind 07.11.2012 / 19:03