qemu VM에 Windows Server 2012 R2 설치

qemu VM에 Windows Server 2012 R2 설치

Windows Server 2012 R2를 설치하려고 하는데 Windows 파일을 로드한 직후 다음 메시지가 나타납니다.

Your PC needs to restart. Please hold down the power button. Error Code: 0x0000005D

내 명령은 다음과 같습니다

qemu-system-x86_64.exe -L . -m 2048 -boot d -hda coeess_virtual.img -cdrom en_windows_server_2012_r2_x64_dvd_2707946.iso

답변1

지원되는 x64 CPU를 지정합니다. QEMU의 기본값이 무엇인지 누가 알겠습니까?

다음과 유사합니다(KVM 필요).

qemu-system-x86_64 -cpu host -m 2048 -boot d -hda coeess_virtual.img -cdrom en_windows_server_2012_r2_x64_dvd_2707946.iso

또는 다음과 같습니다(KVM이 필요하지 않음).

qemu-system-x86_64 -cpu Nehalem -m 2048 -boot d -hda coeess_virtual.img -cdrom en_windows_server_2012_r2_x64_dvd_2707946.iso

지원되는 값이 포함된 목록은 다음을 통해 쿼리할 수 있습니다.

qemu-system-x86_64 -cpu "?"

업데이트:

아, 예, 경고하는 것을 잊었습니다. 여전히 작동하지 않을 수 있습니다. QEMU는 현재 Linux 버전과 "구식" Windows 버전에는 적합하지만 KVM 지원 없이는 Windows 8+를 실행하지 못할 수도 있습니다.

관련 정보