qemu显示并挂起“从硬盘启动”消息

时间:2019-04-17 04:07:48

标签: qemu

我在QEMU中使用Debian映像。安装效果很好 命令。

ISO_FILE="debian-buster-DI-alpha5-amd64-xfce-CD-1.iso"
DISK_IMAGE="debian.img"
SPICE_PORT=5924

qemu-system-x86_64 \
    -cdrom "${ISO_FILE}" \
        -drive format=raw,if=pflash,file=/usr/share/ovmf/OVMF.fd,readonly \
        -drive file=${DISK_IMAGE:?} \
        -enable-kvm \
        -m 2G \
        -smp 2 \
        -cpu host \
        -vga qxl \
        -serial mon:stdio \
        -net user,hostfwd=tcp::2222-:22 \
        -net nic \
        -spice port=${SPICE_PORT:?},disable-ticketing \
        -device virtio-serial-pci \
        -device virtserialport,chardev=spicechannel0,name=com.redhat.spice.0 \
        -chardev spicevmc,id=spicechannel0,name=vdagent 

但是当我使用

之类的命令再次启动图像时
DISK_IMAGE="debian.img"
SPICE_PORT=5924

qemu-system-x86_64 \
        -drive format=raw,if=pflash,file=/usr/share/ovmf/OVMF.fd,readonly \
        -drive file=${DISK_IMAGE:?} 
        -enable-kvm \
        -m 2G \
        -smp 2 \
        -cpu host \
        -vga qxl \
        -serial mon:stdio \
        -net user,hostfwd=tcp::2222-:22 \
        -net nic \
        -spice port=${SPICE_PORT:?},disable-ticketing \
        -device virtio-serial-pci \
        -device virtserialport,chardev=spicechannel0,name=com.redhat.spice.0 \
        -chardev spicevmc,id=spicechannel0,name=vdagent \
        -snapshot

QEMU卡在booting from harddisk处。关于如何解决此问题并采取行动的任何想法 向前吗?

0 个答案:

没有答案