避免VMWare中的Ubuntu虚拟机开机时出现“Host SMBus Controller not enabled”提示

故障现象:一台基于Intel Xeon E3-1245 v5处理器构建的工作站,使用VMWare Workstation 15.5.0宿主Ubuntu 12.04.5 LTS操作系统时,开机时出现“i2c_piix4 **Host SMBus controller not enabled”提示。

故障处理:开机时按住Shif键,从GRUB选单选择Recovery Mode进入恢复模式。并选择root项,输入Root密码后进入Root命令行。

挂载文件系统为可读写:

mount -o remount,rw /

编辑/etc/modprobe.d/blacklist.conf文件:

vim /etc/modprobe.d/blacklist.conf

I键进入插入编辑模式,在文件末尾追加:

# Block I2C_PIIX4 to avoid SMBus Controller errors
blacklist i2c_piix4

随后按键盘上的Esc键,输入:wq保存并退出Vim编辑器。

重建RAMFS:

update-initramfs  -u  -k  all

随后重启系统即可。

参考资料:https://www.cnblogs.com/wenchaoz/p/8982122.html

除非特别注明,本页内容采用以下授权方式: Creative Commons Attribution-ShareAlike 3.0 License