如何用流浪汉安装debian拉伸?

时间:2016-11-23 14:31:55

标签: vagrant debian

我尝试在Mac OSX上使用vagrant启动Debian拉伸框。我将框更改为fujimakishouten/debian-stretch64以安装此框:

https://atlas.hashicorp.com/fujimakishouten/boxes/debian-stretch64

但我收到错误:无法找到该框。

如何使用vagrant创建一个伸展的Debian VM?

4 个答案:

答案 0 :(得分:3)

截至目前,https://app.vagrantup.com/debian

列出了debian/stretch64

答案 1 :(得分:1)

如下所述:Vagrant box could not be found or could not be accessed in the remote catalog - incompatible curl version

  

似乎存在vagrant 1.8.7和嵌入式curl版本与mac os二进制文件的问题(默认情况下在mac os Sierra和其他版本上发布) - 删除嵌入式版本

sudo mv /opt/vagrant/embedded/bin/curl /var/tmp/

这个,并使用另一个框:

https://atlas.hashicorp.com/sharlak/boxes/debian_stretch_64

为我解决了这个问题。

答案 2 :(得分:0)

您可以使用debian/testing64框。

来自atlas.hashicorp.com,它基于stretch

答案 3 :(得分:0)

您还可以使用https://app.vagrantup.com/generic/boxes/debian9上可用的generic/debian9stretch

要更具体地描述无聊的命令,可以全新安装

vagrant init generic/debian9
vagrant up

或放置在无业游民的文件中

Vagrant.configure("2") do |config|
  config.vm.box = "generic/debian9"
end

尽管,您的问题是您在回答中提到的其他问题,但是考虑到问题的标题,这可能会对其他人有所帮助(例如我尝试安装Stretch)。 谢谢!