In the normal way, the microcode is loaded on boot from the BIOS. However it is possible to update it on Linux; this must be repeated on every boot.
This document decribes how to proceed for Intel processors.
First of all, update your system:
# tazpkg up
Then get-install the intel-ucode package:
# tazpkg -gi intel-ucode
The package manager installs microcodes for Intel processors in /lib/firmware/intel-ucode
; files are stored with names in the format XX-YY-ZZ.
The command
head -n7 /proc/cpuinfo
should return something like this:
Convert the cpu family
-model
-stepping
numbers in 3 pairs of hexadecimal values.
From the example above,
The microcode for the processor is 06-3c-03.
If you don't find your XX-YY-ZZ file in /lib/firmware/intel-ucode
, this means there is no microcode available for your processor; if there is one, force its loading:
# echo 1 > /sys/devices/system/cpu/microcode/reload
Check if the revision of the microcode has changed:
dmesg | grep microcode
If the revision hasn't changed, then there is no update for your processor; if it did change, then continue with this procedure.
The best thing consists of loading the microcode as soon as possible at boot, before the userspace has started. This is done by adding an initrd in the GRUB configuration file.
Create the appropriate environment (no matter where you do it):
mkdir -p initrd/kernel/x86/microcode
Change in initrd:
cd initrd
Copy your microcode (replace XX-YY-ZZ
with your microcode file name):
cp -v /lib/firmware/intel-ucode/XX-YY-ZZ kernel/x86/microcode/GenuineIntel.bin
Create the initrd:
# find . | cpio -o -H newc > /boot/microcode.img
Add the following line in your /boot/grub/menu.lst (or grub.cfg):
initrd /boot/microcode.img
If you already use an initrd to boot your system, you must load the microcode first; below an example to start SliTaz Rolling in frugal mode:
#title SliTaz Rolling core64 - frugal install (kernel 3.16.55) root (hd0,2) kernel /slitaz/boot/vmlinuz-3.16.55-slitaz64 root=/dev/null autologin initrd /slitaz/boot/microcode.img /slitaz/boot/rootfs.gz
Reboot the computer and check the microcode has been loaded:
If you are using a 32bit kernel, it is possible that the CPUs aren't all updated; this is not a problem because the kernel doesn't use them.
Below, an example with Rolling Core:
CPU2 and CPU3 are not updated.
The same computer with Rolling Core64:
CPU2 and CPU3 are updated.
Intel provide frequent updates of their microcodes. You can download the latest version of the Intel microcodes at https://downloadcenter.intel.com/download/27591/Linux-Processor-Microcode-Data-File.
As the root user, uncompress the downloaded microcode-YYYYMMDD.tgz
file in /lib/firmware
.
# tar -xzf microcode-YYYYMMDD.tgz /lib/firmware/
Then follow this HOWTO from step 2.
2018/04/24 | Creation |
Date | Modification |
---|