CentOSÂ guest instances in VMware sometimes come up with the boot error message:
1 |
piix4_smbus 0000:00:007.3: Host SMBus controller not enabled! |
This error is being caused because VMware doesn’t actually provide that level interface for CPU access, but Ubuntu try to load the kernel module anyway. How to fix it:
1 |
sudo nano /etc/modprobe.d/blacklist.conf |
add the line:
1 |
blacklist i2c-piix4 |
Reboot. NOTE: for older versions use blacklist i2c_piix4…