QEMU 找不到设备或节点名称

QEMU 找不到设备或节点名称

当我做

virsh list

我让 ubuntu14.10 和 ubuntu15.10 运行,但是当我运行此命令来拍摄快照时。

virsh qemu-monitor-command ubuntu15.10 '{ "execute": "transaction", "arguments":{"actions": [{ "type": "blockdev-snapshot-sync", "data" :{ "device": "ubuntu15.10", "snapshot-file": "hd0-snap.qcow2"} } ] } }'

我收到一条错误消息“找不到设备 = ubuntu15.10 或 node_name=”

答案1

设备需要是实际的块设备,而不是节点/机器的名称。(参见:http://wiki.qemu.org/Features/Snapshots#QMP_command

尝试:

virsh qemu-monitor-command ubuntu15.10 '{"execute":"query-block"}'

找出Target您想要快照的块设备。

相关内容