Table of Content

find download path

here is download link format:

https://atlas.hashicorp.com/$boxrelease/providers/virtualbox.box

from vagrant site find the release info

https://app.vagrantup.com/ubuntu/boxes/artful64/versions/20171220.0.0
so
$boxrelease=ubuntu/boxes/artful64/versions/20171220.0.0

this is real download link,

https://atlas.hashicorp.com/ubuntu/boxes/artful64/versions/20171220.0.0/providers/virtualbox.box

copy and paste to browser, will download, or from cli,

$ curl -Lo ubuntu-artful64-vagrant.box https://atlas.hashicorp.com/ubuntu/boxes/artful64/versions/20171220.0.0/providers/virtualbox.box
% Total % Received % Xferd Average Speed Time Time Time Current
Dload Upload Total Spent Left Speed
100 160 100 160 0 0 103 0 0:00:01 0:00:01 --:--:-- 637
100 152 0 152 0 0 74 0 --:--:-- 0:00:02 --:--:-- 74
1 284M 1 4130k 0 0 284k 0 0:17:03 0:00:14 0:16:49 229k

add box from local path

vagrant box add ubuntu/artful64 box_path/ubuntu-artful64-vagrant.box
vagrant box list | grep artful64

run vagrant

vagrant up

In case Internet is slow, download box once then can save time when you do test.