VMware安装HMC注意事项
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.
启动后,正常进入图形界面......