I\'m using Vagrant for my environment and I\'ve got a little issue:
$vagrant up
Bringing machine \'default\' up with \'virtualbox\' provider...
==> defau
There appears to be something wrong with the embedded curl program in Vagrant. Following the advice above I just renamed it (just in case I wanted it back) and vagrant up
began to work as expected.
On my mac:
♪ .vagrant.d sudo mv /opt/vagrant/embedded/bin/curl /opt/vagrant/embedded/bin/curlOLD
Password:
It looks like you may have created a Vagrant project with just vagrant init
. That will create your Vagrantfile, but it won't have a box defined.
Instead, you could try
$ vagrant init hashicorp/precise32
$ vagrant up
which uses a standard Ubuntu image. The Vagrant website has a Getting Started which gives some good examples.
This happened due to having a vagrant file without a defined box name. this happen when you running vagrant init with out a box name parameter.
So you have to delete the Vagrant file then
vagrant init box-title
vagrant up
I hope this could help!
Follow the below syntax when creating the virtual box:
$ vagrant box add {title} {url}
$ vagrant init {title}
$ vagrant up
See http://www.vagrantbox.es/
vagrant init laravel/homestead
and then
vagrant up
Was what worked for me.
I solved this problem by going to folder .vagrant.d/boxes/
under your home and changed name of the folder from laravel-VAGRANTSLASH-homestead
to base
.
And it worked for me.
Please check if virtualization is enabled in your BIOS.