Reputation: 1313
I am using vagrant for first time.
I am trying to download a VM by running "vagrant up" command. corresponding vagrant file is https://github.com/aalkilani/spark-kafka-cassandra-applying-lambda-architecture/tree/master/vagrant
i have a slow internet connection ..., its been around 1 hour i am not sure how much of download has happened .... few questions
I am using Vagrant2.0.0 on windows7
looking forward to learn from your experience.
Upvotes: 1
Views: 2052
Reputation: 53793
Boxes are first downloaded from ~/.vagrant.d/tmp
so if you interrupt the download, it will remain here, if you have many unsuccessful downloads, you might want to clean this directory.
If download is in progress, you can follow the size of the file from this directory, if anything is moving or not.
once box file is fully downloaded, it will be installed in ~/.vagrant.d/boxes
vagrant internally uses curl to download the box, you can use this tool or wget to download the particular box file and follow the progress directly from there.
For your particular case, the direct URL for the box is https://vagrantcloud.com/aalkilani/boxes/spark-kafka-cassandra-applying-lambda-architecture/versions/0.0.6/providers/virtualbox.box, you can download this file directly using your preferred tool. Once you have downloaded, you can install the box directly from the file.
Upvotes: 1
Reputation: 4476
Acutally when you execute the vagrant up
in the console, it will show the download processes.
But for your question, all the downloaded boxes are house in "C:\Users\USERNAME\.vagrant.d\boxes" folder.
Baically due to the poor connection, vagrant download the boxes very slow, so it is high recommand to download your base box in http://www.vagrantbox.es/ or https://app.vagrantup.com/boxes/search with the download tool, then you can add it by
vagrant box add <title> <path_to_file>
vagrant init <title>
vagrant up
Upvotes: 2