我正在尝试使用以下方法在 Windows 上的 QEMU 中虚拟化基于 NVME 的 Linux:
qemu-system-x86_64 -m 2048 -cdrom ubuntu-18.04.4-desktop-amd64.iso -drive file=nvmeimage.img,if=
none,format=raw,id=D22 -device nvme,drive=D22,serial=1234
这会出现以下错误:
警告:未指定“nvmeimage.img”的图像格式,探测猜测为原始格式。自动检测格式对于原始图像来说很危险,块 0 上的写入操作将受到限制。
明确指定“原始”格式以消除限制。
添加format=raw
不起作用。