How to open existing VMs in VirtualBox?
Rise to the top 3% as a developer or hire one of them at Toptal: https://topt.al/25cXVn
--------------------------------------------------
Music by Eric Matyas
https://www.soundimage.org
Track title: Luau
--
Chapters
00:00 How To Open Existing Vms In Virtualbox?
00:40 Accepted Answer Score 61
01:14 Answer 2 Score 8
01:30 Answer 3 Score 8
02:59 Answer 4 Score 5
03:28 Answer 5 Score 4
04:32 Thank you
--
Full question
https://superuser.com/questions/187598/h...
--
Content licensed under CC BY-SA
https://meta.stackexchange.com/help/lice...
--
Tags
#virtualbox
#avk47
ACCEPTED ANSWER
Score 61
The previous answers appear obsolete.
As of version 4 of the Oracle VirtualBox Manager, the "Add" option is hidden in the "Machine" menu (which is an operating system menu). Just select Add, and navigate to the .vbox file you want. This works great even if the vbox file is on an external drive: if the drive is later removed, the missing boxes are simply marked as 'inaccessible'.
ANSWER 2
Score 8
In the machine folder there is a *.vbox file. Drag it into the VM list in VirtualBox.
ANSWER 3
Score 8
Importing existing virtual machines from another host into VirtualBox 4 and above on Windows hosts:
Importing the vdi virtual disk:
Go to the menu: *File ⇨ Virtual media manager.
Drag and drop the
[vm_name].vdi
into the list.
Adding the imported machine to the vbox manager list:
Double-click on the
[vm_name].vbox
file in the directory of the vm, to add this machine to the vbox manager list.Double-click on the
[vm_name].vbox
inside the vbox manager list to start the appliance.
Sidenotes:
If the VM comes from an older vbox release, you will have an
[vm_name].xml
inside a sub directory instead of a[vm_name].vbox
in the same directory as[vm_name].vdi
.Copy the
[vm_name].xml
into the same directory as the[vm_name].vdi
and rename it to[vm_name].vbox
.Proceed with step 1.1 or 2.1 depending on the actions you have already taken.
ANSWER 4
Score 5
If you want to use an existing virtual hard disk and 'open' it into Virtual Box - you need to go to “File > Virtual Media Manager” and select ‘Add.’
Browse to your existing disk and select ok. This registers a disk with Virtual Box. Now you need to attach this disk to a new or existing VM to actually use it.
ANSWER 5
Score 4
By default, VirtualBox loads its configuration data from the folloing paths:
- On Windows, this is
%HOMEDRIVE%%HOMEPATH%\.VirtualBox
; typically something likeC:\Documents and Settings\Username\.VirtualBox
. - On Mac OS X, this is
$HOME/Library/VirtualBox
. - On Unix-like systems (Linux, Solaris), this is
$HOME/.VirtualBox
.
This means that machines are specific to the logged in user. If you need to set a common place to store machines between different users you can override the default locatiion by setting the VBOX_USER_HOME
environment variable. VirtualBox will use the path in this variable as its store for VM configuration data.
See the VirtualBox help topic on VirtualBox configuration data for more information.