by default, you should end with something like this. in windows 7 and 8
c:\Users\<username>\VirtualBox Vm's\ c:\Users\<username>\.vagrant.d\boxes\ perhaps you are doing something manually? let's start from scratch, no assumptions. vagrant box list should list the machines you have imported go to any directory, and create a vagrant file cd mkdir test1 cd test1 vagrant init <any_box_name> vagrant up that, should create a vm inside the default path, with disks and everything. how went your test with my boxes? oracle65-2disk ? On Tue, Mar 18, 2014 at 11:34 AM, Nic' <[email protected]> wrote: > HI , > > so do you think Alvaro, harddisks should automatically stored within an > independent VM folder and in a normal way , shouldnt share the same > harddisk folder across all VMs ? > Even in the case we deploy several VM from one same basebox. > > cheers, > > > Le lundi 17 mars 2014 16:12:05 UTC+13, Nic' a écrit : >> >> humm looks we dont have these env variables on Windows OS , sorry >> what the result of this ENV grep would you expect ? , i could try to >> search it on windows . >> >> I will try the machine asap too . >> >> >> 2014-03-17 15:56 GMT+13:00 Alvaro Miranda Aguilera <>: >> >>> perhaps one of the variables is causing issues. >>> >>> can you paste the output of: >>> >>> env | egrep -i 'v*box|vagrant' >>> >>> >>> >>> >>> if you have some time, can you try with this vm: >>> >>> https://vagrantcloud.com/kikitux/oracle65-2disk >>> >>> >>> >>> >>> On Mon, Mar 17, 2014 at 3:26 PM, Nic' <> wrote: >>> >>>> yes , it happens with both vm downloaded from vagrantbox.es or build >>>> by myself. >>>> I rename the VM in the vagrantfile with the config.vm.name command. >>>> so it create a folder named as wished but the vmdk doesnt follow and >>>> stay in the original folder used by the basebox. >>>> >>>> I join a vbox file and a vagrant file , in the .VBOX file line 12 is >>>> the location(../Template_test/*.vmdk) of the harddisk even if i have >>>> rename my VM in the VagranFile (vb.name=002) >>>> >>>> thank you . >>>> >>>> Le lundi 17 mars 2014 14:53:57 UTC+13, Alvaro Miranda Aguilera a écrit : >>>> >>>>> uhmmmm, >>>>> >>>>> from where are you getting those boxes or how are you creating them? >>>>> >>>>> I don't face that problem. >>>>> >>>>> I have seen that when you create a new disk as part of the vagrant file >>>>> >>>>> for that situation (create a new disk) >>>>> >>>>> What you may want to do, is set a specific name to the vm, so the path >>>>> to the folder in the virtualbox default path will be known, then you can >>>>> create the file in that known path >>>>> >>>>> config.vm.hostname is the hostname inside the vm >>>>> config.vm.name is the name of the vm in the VirtualBox space >>>>> >>>>> >>>>> can you share a Vagrantfile and one of those base box ??? >>>>> >>>>> >>>>> >>>>> >>>>> On Mon, Mar 17, 2014 at 2:39 PM, Nic' > wrote: >>>>> >>>>>> Hi , >>>>>> >>>>>> after few deployments with Vagrant either with a base box or with a >>>>>> new packaged one , I face to a problem with the hard disk location within >>>>>> VBox. >>>>>> Actually , each time I Vagrant up a new machine , even if i renamed >>>>>> it , the new hard disk (vmdk) wil take place in the same original folder >>>>>> define in the base box. >>>>>> e.g. ~\myvms\basebox\xxxx.vmdk >>>>>> and all my next VMs based on a specific basebox will put the .vmdk in >>>>>> the above folder . >>>>>> >>>>>> Wich is logical because it's defined in the .OVF file but it's not >>>>>> really handy and I don't really like to mix all hard drive together. >>>>>> >>>>>> Work around : I manage the hard disk afterward with VBoxmanage and >>>>>> move it in a specific VM folder >>>>>> >>>>>> But where is the automate way to do that ? >>>>>> >>>>>> If anyone has an idea ? >>>>>> >>>>>> thank you. >>>>>> Nic" >>>>>> >>>>>> -- >>>>>> 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. >>>>>> >>>>> >>>>> -- >>>> 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. >>>> >>> >>> -- >>> 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/kaJ47GMayao/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. > -- 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.
