VirtualBox: piix4_smbus Error [fix]
Ever notice this annoying (but harmless) error when booting up a Linux VM in Virtualbox?
piix4_smbus 0000.00.07.0: SMBus base address uninitialized - upgrade bios or use force_addr=0xaddr
Here’s how to fix it:
- Check to see if module is loaded by running this command: lsmod | grep i2c_piix4
- If so, blacklist it in /etc/modprobe.d/blacklist.conf by adding the following line: blacklist i2c_piix4
- Finish by updating the initramfs: update-initramfs -u -k all
- Done!