9

I have installed Vagrant and once I am inside my project folder from the terminal I fire the following commands:

  1. vagrant box add hashicorp/precise32 http://files.vagrantup.com/precise32.box

Output:

[vagrant] Downloading with Vagrant::Downloaders::HTTP... 
[vagrant] Downloading box: files.vagrantup.com/precise32.box 
[vagrant] Downloading box: hashicorp-files.vagrantup.com/precise32.box 
[vagrant] Extracting box... 
[vagrant] Verifying box... 
[vagrant] Cleaning up downloaded box...
  1. vagrant init hashicorp/precise32

Output: A Vagrantfile has been placed in this directory

  1. vagrant up

I get an error that says:

The box 'hashicorp/precise32' could not be found
michaelbahr
  • 4,837
  • 2
  • 39
  • 75
Bhavika
  • 540
  • 1
  • 7
  • 16
  • Did each of the commands actually succeed? – Biffen Feb 05 '15 at 09:51
  • The first command was successful and the terminal showed [vagrant] Downloading with Vagrant::Downloaders::HTTP... [vagrant] Downloading box: http://files.vagrantup.com/precise32.box [vagrant] Downloading box: http://hashicorp-files.vagrantup.com/precise32.box [vagrant] Extracting box... [vagrant] Verifying box... [vagrant] Cleaning up downloaded box... The second command was also successful and said that A `Vagrantfile` has been placed in this directory. You are now ready to `vagrant up` your first virtual environment. I get the error after the third step. – Bhavika Feb 05 '15 at 10:29
  • Please run again with an updated version of vagrant with 'vagrant up --debug'. Might be fixed through [#5016](https://github.com/mitchellh/vagrant/issues/5016) and [#5231](https://github.com/mitchellh/vagrant/issues/5231) – michaelbahr Jul 08 '15 at 14:55

2 Answers2

3

All you need to do is edit you vagrant file and define the vm.box_url and vm.box options like this.

config.vm.box_url = "http://files.vagrantup.com/precise32.box"

config.vm.box = "precise32"

and then run "vagrant up"

Shantanu
  • 2,206
  • 18
  • 16
1

Please, install Vagrant from .deb package which is downloaded from original site http://www.vagrantup.com/downloads

lovesuper
  • 323
  • 3
  • 12