virsh snapshot-create-as win7 snap01 --description "something here"
如何列出带有描述的快照列表?
答案 0 :(得分:0)
您可以从快照xml转储中获取描述:
virsh snapshot-dumpxml --domain {domain name} --snapshotname {snapshot name}
答案 1 :(得分:0)
您可以生成所有计算机的列表,以及有关其快照的信息,包括带有此小脚本的描述。
//Headers
const config = {
headers: {
"Content-type": "application/json"
},
withCredentials: true
}