如何修改 oracle vm virtualbox 中克隆 vm 的默认硬盘位置?

如何修改 oracle vm virtualbox 中克隆 vm 的默认硬盘位置?

需要帮助来更改 oracle vm virtualbox 中克隆的 vm 硬盘的默认位置,默认情况下它现在保存在“/root/VirtualBox VMs/server Clone/server Clone.vdi”中。

帮我改变这个位置。TIA..

我的主机是 Ubuntu 14.04 服务器。

答案1

为了能够将 VirtualBox 设备克隆到默认位置以外的其他位置,请在终端中执行以下操作:

  1. registered names获取虚拟设备列表:

    VBoxManage list vms
    
  2. 使用第一步中的名称,克隆并移动到所需位置:

    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

答案2

看起来他们也添加了在 GUI 中指定路径的功能(如果我没记错的话是在 6.0 中添加的):

https://www.virtualbox.org/manual/ch01.html#clone

在此处输入图片描述

相关内容