Files
tldr/pages.zh/common/vboxmanage-clonevm.md

20 lines
525 B
Markdown
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

# vboxmanage-clonevm
> 创建现有虚拟机VM的克隆。
> 更多信息:<https://www.virtualbox.org/manual/ch08.html#vboxmanage-clonevm>。
- 克隆指定的虚拟机:
`VBoxManage clonevm {{vm_name}}`
- 为新虚拟机指定一个新名称:
`VBoxManage clonevm {{vm_name}} --name {{new_vm_name}}`
- 指定保存新虚拟机配置的文件夹:
`VBoxManage clonevm {{vm_name}} --basefolder {{path/to/directory}}`
- 在VirtualBox中注册克隆的虚拟机
`VBoxManage clonevm {{vm_name}} --register`