在虚拟机中恢复映像,无需启动它
我正在使用 UEC 云(带有 kvm)
- 我可以在虚拟机中恢复映像而不启动它吗? (就像冻结图像,然后在跳过整个启动过程的同时在该精确的刻度上重新启动图像)
- 这就是“快照”吗?
如果可能的话,那么一般步骤是什么?
I'm using a UEC Cloud (with kvm)
- Can I restore an image, in a VM, without booting it? (like freezing the image and then restarting the image on that exact tick while skipping the whole booting)
- Is that what 'Snapshot' is?
If it's possible, then what are the general steps to do it?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我认为
virsh save
和virsh Restore
是您正在寻找的命令。Virsh 是 libvirt 的一部分,libvirt 是一个抽象层,可以与 kvm 和 xen 等不同的虚拟化解决方案进行通信。
我不知道这两个命令是如何实现的。
I think that
virsh save
andvirsh restore
are the commands you are looking for.Virsh is a part of libvirt, an abstraction layer that can talk to different virtualization solutions like kvm and xen.
I don't know how these two commands are implemented.
Virsh Restore 是直接启动虚拟机的命令,无需从最后保存的状态文件启动。
它会在保存状态文件的同一位置重新启动虚拟机。
virsh 恢复 /path/to/state file.state
Virsh restore is the command to directly start the VM without booting from teh lastly saved state file.
it restart the VM in the same position in which the state file was saved.
virsh restore /path/to/state file.state