VMware安装HMC注意事项

教程发布:风哥 教程分类:ITPUX技术网 更新日期:2022-02-12 浏览学习:403

1.要在D:\Documents\Virtual Machines\Windows XP目录中拷贝 HMC.ROM文件
2.在配置文件虚拟机文件时,要选择other linux 2.6x kernel
3.选择60G以上硬盘,且不能是IDE模式,要SCSI模式才可以
4.安装完成后,hmc启动时报错:

A critical error has prevented normal HMC startup. Please reboot the HMC and try again. If the problem persists, contact your support personnel. 1901: HMC Startup aborted due to a malfunction of a required module

解决办法:

1) Move the original dmidecode

[mw_shl_code=applescript,true]cd /usr/sbin
mv dmidecode dmidecode.orig [/mw_shl_code]

2) Create a script named /usr/sbin/dmidecode with this content:
[mw_shl_code=applescript,true] #!/bin/bash
DMIDECODE=/usr/sbin/dmidecode.orig

if [[ "$2" == "bios-version" ]]
then
echo "1234-123"
elif [[ "$2" == "system-product-name" ]]
then
echo "1234-123"
else
$DMIDECODE "$@"
fi[/mw_shl_code]

3) Make the script executable
[mw_shl_code=applescript,true]chmod +x dmidecode[/mw_shl_code]

4) Reboot the HMC.

启动后,正常进入图形界面......

本文标签:
网站声明:本文由风哥整理发布,转载请保留此段声明,本站所有内容将不对其使用后果做任何承诺,请读者谨慎使用!
【上一篇】
【下一篇】