Regarding the infinite error restart problem encountered when installing macos on a virtual machine

. The author encountered errors in five languages ​​when installing macos on a virtual machine. I couldn't figure out what to do. When I finally solved it, I didn't know what steps solved the problem. The following is the error report and its resolution process.

1: After completing the tutorial, start the virtual machine installation. It prompts that the client computer has disabled the cup. This problem is easy to solve. The following link is a solution based on different processors -note, do not edit while the virtual machine is running. If you don't have permission, please suspend the virtual machine or shut down the virtual machine and then use Notepad to edit.

2: The author found that his vm service seemed to be different from others, so he repaired the VM. The following is a tutorial link to repair the vm \

3: The following is the solution to the infinite error restart: The author found in the directory that during the continuous restart process, a line of code is constantly changing: toolsInstallManager.updateCounter, which keeps recording the number of restarts. So I wonder if it is this Regarding the problem of downloading tools, I tried to find a way to pause the downloading of tools. Sure enough, I found a solution on this foreign forum . He gave the following two lines of code: tools.remindInstall = "false"  
                            tools. upgrade.policy = "manual"

Finally, after adding these two lines of code to the cup-disabled code, the author finally loaded it to the final stage. Unfortunately, an infinite error still occurred at the end.

4: Finally, the author changed the iso file. The original version was the iso12bate version, and I replaced it with the full version. After adding the above process, the problem was successfully solved.

Summary: On the basis of correct use of VM, adding the corresponding code and using the full version or downgraded version of the iso file will solve the problem.

The above is the code added by the author (amd)

smc.version = "0"
cpuid.0.eax = "0000:0000:0000:0000:0000:0000:0000:1011"
cpuid.0.ebx = "0111:0101:0110:1110:0110:0101:0100:0111"
cpuid.0.ecx = "0110:1100:0110:0101:0111:0100:0110:1110"
cpuid.0.edx = "0100:1001:0110:0101:0110:1110:0110:1001"
cpuid.1.eax = "0000:0000:0000:0001:0000:0110:0111:0001"
cpuid.1.ebx = "0000:0010:0000:0001:0000:1000:0000:0000"
cpuid.1.ecx = "1000:0010:1001:1000:0010:0010:0000:0011"
cpuid.1.edx = "0000:0111:1000:1011:1111:1011:1111:1111"
featureCompat.enable = "TRUE"
smbios.reflectHost = "TRUE"
hw.model = "MacBookPro14,3"
board-id = "Mac-551B86E5744E2388"
keyboard.vusb.enable = "TRUE"
mouse.vusb.enable = "TRUE"
tools.remindInstall = "false"  
tools.upgrade.policy = "manual"
 

Guess you like

Origin blog.csdn.net/weixin_74132019/article/details/130011047