How do I install debian stretch with vagrant?
I try to start a Debian stretch box with vagrant
on Mac OSX. I changed the box to fujimakishouten/debian-stretch64
to install this box:
https://atlas.hashicorp.com/fujimakishouten/boxes/debian-stretch64
But I get the error: the box cannot be found.
How can I create a stretch Debian VM with vagrant?
vagrant debian
add a comment |
I try to start a Debian stretch box with vagrant
on Mac OSX. I changed the box to fujimakishouten/debian-stretch64
to install this box:
https://atlas.hashicorp.com/fujimakishouten/boxes/debian-stretch64
But I get the error: the box cannot be found.
How can I create a stretch Debian VM with vagrant?
vagrant debian
1
Possible duplicate of Vagrant box could not be found or could not be accessed in the remote catalog - incompatible curl version
– Frédéric Henri
Nov 23 '16 at 14:50
2
if you are using osx + vagrant 1.8.7, check the duplicate question, it should work for you
– Frédéric Henri
Nov 23 '16 at 14:51
@FrédéricHenri: thanks, that solved it
– rubo77
Nov 23 '16 at 14:56
add a comment |
I try to start a Debian stretch box with vagrant
on Mac OSX. I changed the box to fujimakishouten/debian-stretch64
to install this box:
https://atlas.hashicorp.com/fujimakishouten/boxes/debian-stretch64
But I get the error: the box cannot be found.
How can I create a stretch Debian VM with vagrant?
vagrant debian
I try to start a Debian stretch box with vagrant
on Mac OSX. I changed the box to fujimakishouten/debian-stretch64
to install this box:
https://atlas.hashicorp.com/fujimakishouten/boxes/debian-stretch64
But I get the error: the box cannot be found.
How can I create a stretch Debian VM with vagrant?
vagrant debian
vagrant debian
edited Nov 23 '16 at 14:55
asked Nov 23 '16 at 14:31
rubo77
7,9801372153
7,9801372153
1
Possible duplicate of Vagrant box could not be found or could not be accessed in the remote catalog - incompatible curl version
– Frédéric Henri
Nov 23 '16 at 14:50
2
if you are using osx + vagrant 1.8.7, check the duplicate question, it should work for you
– Frédéric Henri
Nov 23 '16 at 14:51
@FrédéricHenri: thanks, that solved it
– rubo77
Nov 23 '16 at 14:56
add a comment |
1
Possible duplicate of Vagrant box could not be found or could not be accessed in the remote catalog - incompatible curl version
– Frédéric Henri
Nov 23 '16 at 14:50
2
if you are using osx + vagrant 1.8.7, check the duplicate question, it should work for you
– Frédéric Henri
Nov 23 '16 at 14:51
@FrédéricHenri: thanks, that solved it
– rubo77
Nov 23 '16 at 14:56
1
1
Possible duplicate of Vagrant box could not be found or could not be accessed in the remote catalog - incompatible curl version
– Frédéric Henri
Nov 23 '16 at 14:50
Possible duplicate of Vagrant box could not be found or could not be accessed in the remote catalog - incompatible curl version
– Frédéric Henri
Nov 23 '16 at 14:50
2
2
if you are using osx + vagrant 1.8.7, check the duplicate question, it should work for you
– Frédéric Henri
Nov 23 '16 at 14:51
if you are using osx + vagrant 1.8.7, check the duplicate question, it should work for you
– Frédéric Henri
Nov 23 '16 at 14:51
@FrédéricHenri: thanks, that solved it
– rubo77
Nov 23 '16 at 14:56
@FrédéricHenri: thanks, that solved it
– rubo77
Nov 23 '16 at 14:56
add a comment |
4 Answers
4
active
oldest
votes
As of now the box debian/stretch64
is listed at https://app.vagrantup.com/debian
add a comment |
As described here: Vagrant box could not be found or could not be accessed in the remote catalog - incompatible curl version
There seems to be an issue with vagrant 1.8.7 and the embedded curl version vs the mac os binary (shipped by default on mac os Sierra and others) - remove the embedded one
sudo mv /opt/vagrant/embedded/bin/curl /var/tmp/
This, and using another box:
https://atlas.hashicorp.com/sharlak/boxes/debian_stretch_64
solved this for me.
add a comment |
You can use the box debian/testing64
.
From atlas.hashicorp.com and it's based on stretch
.
add a comment |
You can also use the box generic/debian9
a.k.a stretch
available at https://app.vagrantup.com/generic/boxes/debian9
To be more specific in term of vagrant commands, for fresh installation you can do
vagrant init generic/debian9
vagrant up
or in vagrant file put
Vagrant.configure("2") do |config|
config.vm.box = "generic/debian9"
end
Though, your issue was something else as you mentioned in you answer, but considering the title of question, this might help others (like me trying to install stretch).
Thanks!
add a comment |
Your Answer
StackExchange.ifUsing("editor", function () {
StackExchange.using("externalEditor", function () {
StackExchange.using("snippets", function () {
StackExchange.snippets.init();
});
});
}, "code-snippets");
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "1"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f40767180%2fhow-do-i-install-debian-stretch-with-vagrant%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
4 Answers
4
active
oldest
votes
4 Answers
4
active
oldest
votes
active
oldest
votes
active
oldest
votes
As of now the box debian/stretch64
is listed at https://app.vagrantup.com/debian
add a comment |
As of now the box debian/stretch64
is listed at https://app.vagrantup.com/debian
add a comment |
As of now the box debian/stretch64
is listed at https://app.vagrantup.com/debian
As of now the box debian/stretch64
is listed at https://app.vagrantup.com/debian
edited Nov 21 at 3:26
Victor Klos
278411
278411
answered Jun 18 '17 at 8:58
Colin
1,57121215
1,57121215
add a comment |
add a comment |
As described here: Vagrant box could not be found or could not be accessed in the remote catalog - incompatible curl version
There seems to be an issue with vagrant 1.8.7 and the embedded curl version vs the mac os binary (shipped by default on mac os Sierra and others) - remove the embedded one
sudo mv /opt/vagrant/embedded/bin/curl /var/tmp/
This, and using another box:
https://atlas.hashicorp.com/sharlak/boxes/debian_stretch_64
solved this for me.
add a comment |
As described here: Vagrant box could not be found or could not be accessed in the remote catalog - incompatible curl version
There seems to be an issue with vagrant 1.8.7 and the embedded curl version vs the mac os binary (shipped by default on mac os Sierra and others) - remove the embedded one
sudo mv /opt/vagrant/embedded/bin/curl /var/tmp/
This, and using another box:
https://atlas.hashicorp.com/sharlak/boxes/debian_stretch_64
solved this for me.
add a comment |
As described here: Vagrant box could not be found or could not be accessed in the remote catalog - incompatible curl version
There seems to be an issue with vagrant 1.8.7 and the embedded curl version vs the mac os binary (shipped by default on mac os Sierra and others) - remove the embedded one
sudo mv /opt/vagrant/embedded/bin/curl /var/tmp/
This, and using another box:
https://atlas.hashicorp.com/sharlak/boxes/debian_stretch_64
solved this for me.
As described here: Vagrant box could not be found or could not be accessed in the remote catalog - incompatible curl version
There seems to be an issue with vagrant 1.8.7 and the embedded curl version vs the mac os binary (shipped by default on mac os Sierra and others) - remove the embedded one
sudo mv /opt/vagrant/embedded/bin/curl /var/tmp/
This, and using another box:
https://atlas.hashicorp.com/sharlak/boxes/debian_stretch_64
solved this for me.
edited May 23 '17 at 11:46
Community♦
11
11
answered Nov 23 '16 at 14:54
rubo77
7,9801372153
7,9801372153
add a comment |
add a comment |
You can use the box debian/testing64
.
From atlas.hashicorp.com and it's based on stretch
.
add a comment |
You can use the box debian/testing64
.
From atlas.hashicorp.com and it's based on stretch
.
add a comment |
You can use the box debian/testing64
.
From atlas.hashicorp.com and it's based on stretch
.
You can use the box debian/testing64
.
From atlas.hashicorp.com and it's based on stretch
.
edited Mar 24 '17 at 22:45
oboshto
9453919
9453919
answered Mar 24 '17 at 13:21
fgbreel
1013
1013
add a comment |
add a comment |
You can also use the box generic/debian9
a.k.a stretch
available at https://app.vagrantup.com/generic/boxes/debian9
To be more specific in term of vagrant commands, for fresh installation you can do
vagrant init generic/debian9
vagrant up
or in vagrant file put
Vagrant.configure("2") do |config|
config.vm.box = "generic/debian9"
end
Though, your issue was something else as you mentioned in you answer, but considering the title of question, this might help others (like me trying to install stretch).
Thanks!
add a comment |
You can also use the box generic/debian9
a.k.a stretch
available at https://app.vagrantup.com/generic/boxes/debian9
To be more specific in term of vagrant commands, for fresh installation you can do
vagrant init generic/debian9
vagrant up
or in vagrant file put
Vagrant.configure("2") do |config|
config.vm.box = "generic/debian9"
end
Though, your issue was something else as you mentioned in you answer, but considering the title of question, this might help others (like me trying to install stretch).
Thanks!
add a comment |
You can also use the box generic/debian9
a.k.a stretch
available at https://app.vagrantup.com/generic/boxes/debian9
To be more specific in term of vagrant commands, for fresh installation you can do
vagrant init generic/debian9
vagrant up
or in vagrant file put
Vagrant.configure("2") do |config|
config.vm.box = "generic/debian9"
end
Though, your issue was something else as you mentioned in you answer, but considering the title of question, this might help others (like me trying to install stretch).
Thanks!
You can also use the box generic/debian9
a.k.a stretch
available at https://app.vagrantup.com/generic/boxes/debian9
To be more specific in term of vagrant commands, for fresh installation you can do
vagrant init generic/debian9
vagrant up
or in vagrant file put
Vagrant.configure("2") do |config|
config.vm.box = "generic/debian9"
end
Though, your issue was something else as you mentioned in you answer, but considering the title of question, this might help others (like me trying to install stretch).
Thanks!
edited Nov 21 at 17:46
answered Nov 21 at 17:41
Azhar Khattak
29027
29027
add a comment |
add a comment |
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Some of your past answers have not been well-received, and you're in danger of being blocked from answering.
Please pay close attention to the following guidance:
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f40767180%2fhow-do-i-install-debian-stretch-with-vagrant%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
1
Possible duplicate of Vagrant box could not be found or could not be accessed in the remote catalog - incompatible curl version
– Frédéric Henri
Nov 23 '16 at 14:50
2
if you are using osx + vagrant 1.8.7, check the duplicate question, it should work for you
– Frédéric Henri
Nov 23 '16 at 14:51
@FrédéricHenri: thanks, that solved it
– rubo77
Nov 23 '16 at 14:56