我想知道我的联想笔记本电脑是否采用 Sandy 或 Ivy Bridge

我想知道我的联想笔记本电脑是否采用 Sandy 或 Ivy Bridge

是否有命令或寄存器可以在我的笔记本电脑上找到此信息?我需要在安装 Intel pstate 之前知道它。

谢谢。

PS 这是来自[的命令的结果https://askubuntu.com/users/158442/muru]sudo lshw -C CPU | grep more

  *-cpu                   
       Beschre  *-cpu                   
       Beschreibung: CPU
       Produkt: Intel(R) Core(TM) i5 CPU       M 520  @ 2.40GHz
       Hersteller: Intel Corp.
       Physische ID: 6
       Bus-Informationen: cpu@0
       Version: Intel(R) Core(TM) i5 CPU       M 520  @ 2.40GHz
       Steckplatz: None
       Größe: 1199MHz
       Kapazität: 2400MHz
       Breite: 64 bits
       Takt: 133MHz
       Fähigkeiten: fpu fpu_exception wp 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 syscall nx rdtscp x86-64 constant_tsc arc
h_perfmon pebs bts rep_good nopl xtopology nonstop_tsc aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 cx16 xtpr pdcm pcid sse4_1 sse4_2 popcnt aes lahf_lm ida arat dtherm tpr_s
hadow vnmi flexpriority ept vpid cpufreq
       Konfiguration: cores=2 enabledcores=2 threads=4

答案1

lshw命令可以显示CPU型号,你可以在维基百科上查找:

 sudo lshw -C CPU | grep product
 product: Intel(R) Core(TM) i5-3330 CPU @ 3.00GHz

一般来说,对于一款Core iX处理器,如果型号是2XXX,那么就是Sandy Bridge型号,如果是3XXX,那么就是Ivy Bridge型号,如果是4XXX,那么就是Haswell型号。

当然,该lshw命令使用国际化,因此上述命令在非英语区域设置下可能会失败。grep在这种情况下,请尝试不使用 并查找与上述类似的输出。

输出lshw表明您拥有 Intel Core i5 520M CPU,它属于 Westmere 架构。Westmere 早于 Sandy Bridge,并且根据内核文档

答案2

对于英特尔处理器,方舟是一个值得一看的好地方。

520M 的页面是这里并告诉您有关处理器的所有信息。您甚至可以搜索珊迪大桥常春藤桥移动处理器,并发现 520M 早于 Sandy Bridge 和 Ivy Bridge。

此外,“cat /proc/cpuinfo”比lshw更具可移植性。

相关内容