How do I install debian stretch with vagrant?












0














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?










share|improve this question




















  • 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


















0














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?










share|improve this question




















  • 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
















0












0








0







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?










share|improve this question















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






share|improve this question















share|improve this question













share|improve this question




share|improve this question








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
















  • 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














4 Answers
4






active

oldest

votes


















3














As of now the box debian/stretch64 is listed at https://app.vagrantup.com/debian






share|improve this answer































    1














    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.






    share|improve this answer































      0














      You can use the box debian/testing64.



      From atlas.hashicorp.com and it's based on stretch.






      share|improve this answer































        0














        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!






        share|improve this answer























          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
          });


          }
          });














          draft saved

          draft discarded


















          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









          3














          As of now the box debian/stretch64 is listed at https://app.vagrantup.com/debian






          share|improve this answer




























            3














            As of now the box debian/stretch64 is listed at https://app.vagrantup.com/debian






            share|improve this answer


























              3












              3








              3






              As of now the box debian/stretch64 is listed at https://app.vagrantup.com/debian






              share|improve this answer














              As of now the box debian/stretch64 is listed at https://app.vagrantup.com/debian







              share|improve this answer














              share|improve this answer



              share|improve this answer








              edited Nov 21 at 3:26









              Victor Klos

              278411




              278411










              answered Jun 18 '17 at 8:58









              Colin

              1,57121215




              1,57121215

























                  1














                  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.






                  share|improve this answer




























                    1














                    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.






                    share|improve this answer


























                      1












                      1








                      1






                      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.






                      share|improve this answer














                      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.







                      share|improve this answer














                      share|improve this answer



                      share|improve this answer








                      edited May 23 '17 at 11:46









                      Community

                      11




                      11










                      answered Nov 23 '16 at 14:54









                      rubo77

                      7,9801372153




                      7,9801372153























                          0














                          You can use the box debian/testing64.



                          From atlas.hashicorp.com and it's based on stretch.






                          share|improve this answer




























                            0














                            You can use the box debian/testing64.



                            From atlas.hashicorp.com and it's based on stretch.






                            share|improve this answer


























                              0












                              0








                              0






                              You can use the box debian/testing64.



                              From atlas.hashicorp.com and it's based on stretch.






                              share|improve this answer














                              You can use the box debian/testing64.



                              From atlas.hashicorp.com and it's based on stretch.







                              share|improve this answer














                              share|improve this answer



                              share|improve this answer








                              edited Mar 24 '17 at 22:45









                              oboshto

                              9453919




                              9453919










                              answered Mar 24 '17 at 13:21









                              fgbreel

                              1013




                              1013























                                  0














                                  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!






                                  share|improve this answer




























                                    0














                                    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!






                                    share|improve this answer


























                                      0












                                      0








                                      0






                                      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!






                                      share|improve this answer














                                      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!







                                      share|improve this answer














                                      share|improve this answer



                                      share|improve this answer








                                      edited Nov 21 at 17:46

























                                      answered Nov 21 at 17:41









                                      Azhar Khattak

                                      29027




                                      29027






























                                          draft saved

                                          draft discarded




















































                                          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.




                                          draft saved


                                          draft discarded














                                          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





















































                                          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







                                          Popular posts from this blog

                                          404 Error Contact Form 7 ajax form submitting

                                          How to know if a Active Directory user can login interactively

                                          TypeError: fit_transform() missing 1 required positional argument: 'X'