Created
February 15, 2014 03:31
-
-
Save ryanuber/9014174 to your computer and use it in GitHub Desktop.
Revisions
-
ryanuber created this gist
Feb 15, 2014 .There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,12 @@ If you find that `vagrant box list` somehow does not contain a box you previously had, you can sometimes add the box back if you still have the sources for it in `~/.vagrant.d/boxes`. ``` $ cd ~/.vagrant.d/boxes/precise64/0/virtualbox/ $ tar czf ~/precise64.box . $ vagrant box add precise64 ~/precise64.box Downloading box from URL: file:/Users/ryanuber/precise64.box Extracting box...te: 417M/s, Estimated time remaining: --:--:--) Successfully added box 'precise64' with provider 'virtualbox'! ``` Probably better that you just re-download it if you can do that, but I'm on gogo inflight as I am typing this, so just re-downloading is not an option.