Kvm-Virtualization

QEMU 找不到設備也找不到 node_name

  • August 9, 2016

當我做

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 或節點名稱 =”

設備需要是實際的塊設備,而不是節點/機器的名稱。(見:http ://wiki.qemu.org/Features/Snapshots#QMP_command )

嘗試:

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

找出Target要快照的塊設備。

引用自:https://serverfault.com/questions/795804