Hello, I am going to reply here, as I don't use stack overflow.
we have a vagrant-up group, so feel free to send questions there too: the vagrant hello world goes like this 1. install virtualbox 2. install vagrant if you are on windows, the reboot is required after vagrant is installed if you require a proxy, you need to set it up: windows: set http_proxy=http://proxy:port set https_proxy=http://proxy:port any other bash/shell export http_proxy=http://proxy:port export https_proxy=http://proxy:port then you are ready to go mkdir precise64 cd precise64 vagrant init -m hashicorp/precise64 vagrant up in the stack overflow post, you did vagrant init that create a vagrant file, but you didn't specify the box to use inside the vagrantfile, the important block require: config.vm.box = "<box>" so in your case you missed this part, and it's ok. give a try to the hello world and let me know if goes up properly. if doesn't, check your bios have virtualization enabled, it change vendor to vendor, so you may have to check manuals Alvaro. On Thu, Jun 18, 2015 at 4:45 AM, Georg Heiler <[email protected]> wrote: > Hi, > I am new to packer and want to try it out locally using vagrant > But cannot start the VM the usual vagrant way: > > > http://stackoverflow.com/questions/30894319/how-start-a-local-vm-built-by-packer > > can you help me out? > > Thank you very much. > > -- > You received this message because you are subscribed to the Google Groups > "Packer" 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.
