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
- How to check the % of download completed ( i know it will tell me when it reaches 20% ... but how to check % of downloaded )
- Which temp directory does the vagrant download to ( if i have to stop download in between and resume tomorrow ... not sure if i need to cleanup or it will resume from where it left)
I am using Vagrant2.0.0 on windows7
looking forward to learn from your experience.
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.