Today
-
Yesterday
-
Total
-
  • [💡문제 해결 방법] The CPU has been disabled by the guest operating system. Power off or reset the virtual machine.
    | 프로그래밍 분야/기타 2023. 10. 7. 02:24

    문제 상황

    VMware로 macOS13을 install하던 중 발생한 에러이다.

    VMware 시작 화면

    apple 로고가 잠시 나타나더니 다음 메세지가 출력되면서 더 이상 진행이 되지 않는다.

    에러메세지

    The CPU has been disabled by the guest operating system. Power off or reset the virtual machine.

    해결 방법

    1) VMware macOS를 setup한 폴더에 들어간다. default 값은 Documents - Virtual Machines - macOS 13

    VMware setup 경로

    2) 위 사진에서 보이는 아이콘의 파일을 메모장으로 연다. VMware 구버전의 경우 .vmx 확장자로 되어 있을 수 있다.

    3) 마지막줄에 다음 텍스트를 추가한다.

    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"
    smbios.reflectHost = "TRUE"
    hw.model = "MacBookPro14,3"
    board-id = "Mac-551B86E5744E2388"

    .vmx file

    block된 구간 이외의 부분은 개인마다 다를 수 있으니 무시하고, 파일 최하단에 붙여넣으면 된다.

    저장하고 종료 후 VMware를 재실행해보자.

    해결

    짠. 에러 메세지가 출력되지 않고, 정상적으로 Install되는 모습이다.

sangilyoon.dev@gmail.com