需要帮助来更改 oracle vm virtualbox 中克隆的 vm 硬盘的默认位置,默认情况下它现在保存在“/root/VirtualBox VMs/server Clone/server Clone.vdi”中。
帮我改变这个位置。TIA..
我的主机是 Ubuntu 14.04 服务器。
答案1
为了能够将 VirtualBox 设备克隆到默认位置以外的其他位置,请在终端中执行以下操作:
registered names
获取虚拟设备列表:VBoxManage list vms
使用第一步中的名称,克隆并移动到所需位置:
VBoxManage clonevm <registered-vm-name> --name <new-vm-name> --register --basefolder /path/to/new/location
更多信息:
--name: name of virtualbox machine
--register: Automatically register the new clone in this VirtualBox installation
--basefolder: Folder where the new virtual machine configuration should be saved in.
来源:
https://www.virtualbox.org/manual/ch08.html#vboxmanage-clonevm