web-dev-qa-db-ja.com

Ubuntu 15.04のIntelマイクロコード

新しいIntel マイクロコードを適用したいと思います。 intel-microcodeが提供するマイクロコード更新を適用するにはどうすればよいですか?

私のマイクロコードは非常に時代遅れです。

dmesg | grep microcode
[    0.000000] CPU0 microcode updated early to revision 0x1b, date = 2014-05-29
[    0.088431] CPU1 microcode updated early to revision 0x1b, date = 2014-05-29
[    0.901761] microcode: CPU0 sig=0x306a9, pf=0x10, revision=0x1b
[    0.901768] microcode: CPU1 sig=0x306a9, pf=0x10, revision=0x1b
[    0.901776] microcode: CPU2 sig=0x306a9, pf=0x10, revision=0x1b
[    0.901785] microcode: CPU3 sig=0x306a9, pf=0x10, revision=0x1b
[    0.901833] microcode: Microcode Update Driver: v2.00 <[email protected]>, Peter Oruba

Ubuntu 15.04を使用します。

3
Gamecompiler

Via

Sudo apt-get install intel-microcode

その後、システムを再起動し、以下のコマンドで出力を確認します

dmesg | grep microcode

そして、これは私の古いバージョンです、私のCPUは単純に古すぎます

% dmesg|grep "updated"                                   
[    0.000000] CPU0 microcode updated early to revision 0x60f, date = 2010-09-29
[    0.008000] CPU1 microcode updated early to revision 0x60f, date = 2010-09-29
[    4.380563] cfg80211: World regulatory domain updated:
1
A.B.