如何在 macOS Monterey 上的 Qemu 中安装 Windows 10?

如何在 macOS Monterey 上的 Qemu 中安装 Windows 10?

我正在使用 macOS Monterey,我正尝试使用 Qemu 在我的系统上安装 Windows 10。我在 Mac 终端中使用以下代码

qemu-img create -f raw -o size=20G Windows10.img

qemu-system-x86_64 -boot d -cdrom '/Volumes/Win10_21H1_English_x64.iso' -m 14048M -hda Windows10.img

然而过了一段时间,我的安装失败并出现以下消息:

在此处输入图片描述

你能帮我解决这个问题吗?

答案1

这对我有用

qemu-system-x86_64 \
-m 8G \
-monitor stdio \
-usb \
-device usb-tablet \
-device intel-hda \
-boot d \
-drive file=windows10.qcow2 \
-drive file=Win10_21H2_EnglishInternational_x64.iso,media=cdrom \
-machine type=q35,accel=hvf \
-cpu Haswell

请使用特定的 CPU(您的主机 CPU)而不是“-cpu host”

https://github.com/utmapp/UTM/issues/2368

相关内容