Are you using a bind mount or a symlink to get /dev/sdb1 mounted at /srv/data? I ask because I've encountered some weird behavior with Vagrant and certain kind of mount methods, eg on Windows using subst makes Vagrant freak out.
On Mon, Apr 13, 2015 at 7:16 PM Monte Milanuk <[email protected]> wrote: > On 04/13/2015 04:51 PM, dragon788 wrote: > > Monte, can you post a link to the Vagrantfile you are using? Do you > > have any symlinks or anything setup to redirect your home directory > > over to another location or is your storage path /srv/data ? > > On this particular machine, I have /dev/sdb1 (second 500GB HDD) mounted > under /srv/data, for some of my 'bigger' things, such as VMs, etc. > Hence the path `/srv/data/Virtualbox/vagrant/test`, `test` being the > vagrant box I'm trying to create by following the tutorial after cd'ing > there inside a terminal window. > > Contents of the Vagrantfile inside `test` (after removing all the > comments for brevity): > > 1 # -*- mode: ruby -*- > 2 # vi: set ft=ruby : > 3 > 4 Vagrant.configure(2) do |config| > 5 config.vm.box = "hashicorp/precise32" > 6 config.ssh.insert_key = false > 7 end > > > In the past, I had an earlier version of Vagrant (1.6.5, IIRC), and had > no problems with getting stuff up and running. > > -- > You received this message because you are subscribed to a topic in the > Google Groups "Vagrant" group. > To unsubscribe from this topic, visit > https://groups.google.com/d/topic/vagrant-up/FeXfcxpQlVA/unsubscribe. > To unsubscribe from this group and all its topics, send an email to > [email protected]. > For more options, visit https://groups.google.com/d/optout. > -- You received this message because you are subscribed to the Google Groups "Vagrant" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. For more options, visit https://groups.google.com/d/optout.
