Running Vagrant + VirtualBox from an External Drive
This post is more than 10 years old. I do not delete posts, because even old information is still useful, but please know that some material on this page may be outdated or incorrect. Thanks!
I have a MacBook Air with a 128 GB SSD, so I'm always in a bit of a crunch for space on my hard drive. Developing with local VMs provisioned by Vagrant and VirtualBox makes my Drupal (and other) development experience great, but it also quickly fills up the (tiny amount of) remaining space on my SSD!
Here's how you can move your Vagrant files and VirtualBox VMs out of your home folder onto an external hard drive:
- Copy the
.vagrant.dfolder from your home folder (~/.vagrant.d) to your external drive (I renamed the folder tovagrant_home:cp -R ~/.vagrant.d /Volumes/[VOLUME_NAME]/vagrant_home" - Delete the
.vagrant.dfolder from your home folder:rm -rf ~/vagrant.d - Edit your
.bash_profilefile, and add the following line (example for Mac OS X):export VAGRANT_HOME="/Volumes/[VOLUME_NAME]/vagrant_home" - Open VirtualBox, go to Preferences, and set the Default Machine Folder to a location on your external hard drive (I created a new folder called 'VirtualBox VMs').
At this point, if you download new base boxes, or provision new VMs, they should be on your external drive. (This assumes that you didn't have any existing VMs that you needed to move; in that case, read Moving VirtualBox and Vagrant to an external drive.
Caveats
Unfortunately, there are a couple of downsides to storing VMs externally like this:
- You have to have your hard drive plugged in at all times when running your VMs. (A quick
vagrant suspend, at a minimum, is required before unmounting a drive). - You will need to set the VAGRANT_HOME variable differently for home and work if you use different drives at home and work.
One more note: if you're on a Mac or Linux machine, make sure you use NFS instead of the native folder syncing method. When running a drupal codebase with thousands of files under a shared directory, you'll easily notice at least a 10x or 100x speedup!
Comments