Vagrant 流浪汉,安装厨师/centos-6.6

Vagrant 流浪汉,安装厨师/centos-6.6,vagrant,centos6,Vagrant,Centos6,我的流浪版本是: $ vagrant --version Vagrant version 1.0.1 以下,vagrant init起作用: $ vagrant init chef/centos-6.6 A `Vagrantfile` has been placed in this directory. You are now ready to `vagrant up` your first virtual environment! Please read the comments in th

我的流浪版本是:

$ vagrant --version
Vagrant version 1.0.1
以下,
vagrant init
起作用:

$ vagrant init chef/centos-6.6
A `Vagrantfile` has been placed in this directory. You are now
ready to `vagrant up` your first virtual environment! Please read
the comments in the Vagrantfile as well as documentation on
`vagrantup.com` for more information on using Vagrant.
但是
vagrant up
找不到该框:

$ vagrant up 
There was a problem with the configuration of Vagrant. The error message(s)
are printed below:

vm:
* The box 'chef/centos-6.6' could not be found.

使用
chef/centos-6.6
,如何配置
vagrant
或命令行选项?

不久前,hashicorp将其图像移动到atlas。现在可在此下载框:

您的箱子在这里:

我可以用Vagrant 1.7.2下载这个盒子。您正在使用1.0.1


所以我认为这是一个版本问题。您必须安装一个更新的版本。

Chef已经从atlas中删除了他们的所有盒子。他们在这里留言说:

如果你正在寻找便当盒,他们现在有自己的 组织机构

如果您触发了以下事件:

vagrant box add chef/centos-6.6
对于过时的来源(厨师),它将提供反馈,导致bento成为新来源,大致如下:

名称:便当/centos-6.6
提供商:virtualbox
版本:2.2.0

这最终使网站上所写的内容更加具体,您所问的命令现在应改为:

$ vagrant init bento/centos-6.6

(将chef替换为bento)

指向chef box的链接提供404响应,因为底层图像已经移动。