랩탑에 어떤 유형의 CPU 캐시가 있는지 어떻게 알 수 있습니까?


8

CPU, CPU 캐시 메모리, 메모리 계층 구조, 시스템에 구현 된 캐시 아키텍처, CPU 캐시 크기, CPU 캐시, 액세스주기 및 CPU 대기 시간에 대한 세부 정보를 제공 할 수있는 Ubuntu 용 응용 프로그램이 있습니까?

GUI 또는 CLI 일 수 있습니다. 우분투 저장소 내에서 응용 프로그램을 선호합니다

답변:


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

ican는 명령 행을 수행했습니다. GUI 하나를 사용하겠습니다.

sudo apt-get install sysinfo

여기에 이미지 설명을 입력하십시오

설치 후

여기에 이미지 설명을 입력하십시오 소프트웨어 센터를 통해 설치


안녕 Rinzwind, 형제 나는 그것을 향상시키기 위해 하나 이상의 이미지를 추가했습니다, 당신이 상관하지 않기를 바랍니다. : D
rɑːdʒɑ
당사 사이트를 사용함과 동시에 당사의 쿠키 정책개인정보 보호정책을 읽고 이해하였음을 인정하는 것으로 간주합니다.
Licensed under cc by-sa 3.0 with attribution required.