Oracle vm virtualboxで複製されたvmハードディスクのデフォルトの場所を変更するには、ヘルプが必要です。デフォルトでは、「/ root/VirtualBox VMs/server Clone/server Clone.vdi」に保存されています。
この場所の変更を手伝ってください。 TIA ..
私のホストマシンはUbuntu 14.04サーバーです。
VirtualBoxデバイスをデフォルト以外の別の場所に複製できるようにするには、ターミナルで次の手順を実行します。
仮想デバイスのregistered names
のリストを取得します。
VBoxManage list vms
ステップ1の名前を使用して、クローンを作成し、目的の場所に移動します。
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