我在我的环境中使用Vagrant,我遇到了一个小问题:

$vagrant up

Bringing machine 'default' up with 'virtualbox' provider...
==> default: Box 'base' could not be found. Attempting to find and install...
    default: Box Provider: virtualbox
    default: Box Version: >= 0
==> default: Adding box 'base' (v0) for provider: virtualbox
    default: Downloading: base

An error occurred while downloading the remote file. The error
message, if any, is reproduced below. Please fix this error and try
again.

Couldn't open file /Users/.../base

我已经初始化了我的项目与流浪者初始化,但出于某种原因流浪者拒绝工作。


当前回答

您也可以将vm添加到您的机器

vagrant box add precise32 http://files.vagrantup.com/precise32.box

其他回答

在Vagrant中嵌入的curl程序似乎有问题。按照上面的建议,我只是重新命名了它(以防我想要回来),然后vagrant up开始像预期的那样工作。

在我的mac上:

♪vagrant。d sudo mv /opt/vagrant/嵌入/bin/curl /opt/vagrant/嵌入/bin/curlOLD 密码:

创建虚拟框时遵循以下语法:

 $ vagrant box add {title} {url}
 $ vagrant init {title}
 $ vagrant up

参见http://www.vagrantbox.es/

在开始一个Vagrant之前,第一步也是最重要的一步是,检查系统中所有的框。 使用此命令获取可用的方框列表。

流浪箱名单

然后进入进一步的过程,即选择一个特定的框

初始化ubuntu/trusty64(我已经选择ubuntu/trusty64)

然后,

流浪汉了

谢谢

我知道这是旧的,但我得到了完全相同的错误。结果发现我遗漏了文档中清楚显示的这一步。

我需要编辑Vagrantfile,将config.vm.box设置为我下载的映像hashicorp/precise32。默认情况下,它被设置为base。

以下是文档的内容:

现在箱子已经添加到Vagrant,我们需要配置我们的 项目使用它作为基础。打开Vagrantfile并更改 内容如下: Vagrant.configure("2") do |config| Config.vm.box = "hashicorp/precise32" 结束

在当前目录下,删除该目录下的所有vagrant文件,然后执行init,启动vagrant:

mv .vagrant .vagrant_old
mv Vagrantfile Vagrantfile_old

vagrant init ubuntu/trusty64  
vagrant up  

这个作品。