本文介绍了Vagrant 将其 .box 文件下载到哪里?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
执行以下命令后.box文件会发生什么变化?
vagrant box 添加 lucid32 http://files.vagrantup.com/lucid32.box
下载完成后,我在文件系统上找不到 lucid32.box
文件.
解决方案
如文档中所述
a>,盒子存放在:
- Mac OS X 和 Linux:
~/.vagrant.d/boxes
- Windows:
C:/Users/USERNAME/.vagrant.d/boxes
What happens to the .box file after the following command is executed?
vagrant box add lucid32 http://files.vagrantup.com/lucid32.box
I can't find the lucid32.box
file on the file system after download has completed.
解决方案
As mentioned in the docs, boxes are stored at:
- Mac OS X and Linux:
~/.vagrant.d/boxes
- Windows:
C:/Users/USERNAME/.vagrant.d/boxes
这篇关于Vagrant 将其 .box 文件下载到哪里?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!