Virtual Virtual Machine VirtualBox for Vagrant Virtual Database

I created a Windows 8 virtual machine in VirtualBox, configured the settings and installed the software on it.

Now I would like to turn it into a stray base box so that I can share with the team, as well as create many other virtual machines based on my cut out windows.

You can do it, I saw windows base windows in vagrantcloud . Except that there is no documentation on packaging an existing Windows virtual virtual machine.

Please help me with the instructions or refer to the instructions to create a stray base box from my existing Windows virtual machine. creating basic documentation does not help me, as it does for Linux.

Thanks in advance to the SO community!

+8
vagrant virtualbox
source share
1 answer

Perhaps you can do this using the --base argument to the vagrant package .

First find the name of the virtual machine in the VirtualBox GUI. Let's say this is called "Windows", you release:

vagrant package --base Windows --output /path/to/windows.box

This .box file will be your base field. You can install it locally using

vagrant box install /path/to/windows.box

Alternatively, you can make it available on the server and put its URL in the config.box_url parameter in the Vagrantfile .

+11
source share

All Articles