Hello, Basically the box you were using was too old.
Since Vagrant 1.5, Vagrant can use atlas as an index. so replacing the box with user / box will go to atlas. to check and download the box. It will allow use version, and will tell you when a new box has been released: https://atlas.hashicorp.com/hashicorp <https://atlas.hashicorp.com/hashicorp> ^ those are the boxes available as hashicorp/ If you want more boxes, I suggest check: https://atlas.hashicorp.com/bento <https://atlas.hashicorp.com/bento> Any question, please feel free to ask. Whatever its , all question are very welcome. :) Alvaro. > On 20/03/2016, at 3:40 AM, evrim Alacan <[email protected]> wrote: > > Hi again, after I changed my Vagrantfile by your orders now Vagrants comes up > to be working quite well. I deleted > config.vm.box_url = "http://files.vagrantup.com/precise64.box > <http://files.vagrantup.com/precise64.box>” > and change the box as > config.vm.box = “hashicorp/precise64" > > Thank you so so much for helping me with this problem ^^ But If you can, I > want to know how this solution was correct. What did it change? Why was I > getting that kind of errors? > You know, signing as root and not having permissions is so strange... I want > to know the reason for this for further debugs, thank you! > > > 19 Mart 2016 Cumartesi 09:20:47 UTC+2 tarihinde Alvaro Miranda Aguilera yazdı: > Hello, > > do vagrant destroy, then change this: > > config.vm.box = "precise64" > if Vagrant.has_plugin?("vagrant-cachier") > config.cache.scope = :box > config.cache.auto_detect = true > end > config.vm.box_url = "http://files.vagrantup.com/precise64.box > <http://files.vagrantup.com/precise64.box>” > > > To this: > > > config.vm.box = “hashicorp/precise64" > if Vagrant.has_plugin?("vagrant-cachier") > config.cache.scope = :box > config.cache.auto_detect = true > end > > Then vagrant up > > If still fails, comment out the vagrant-cachier part. > > And share the logs and a zip file with Vagrantfile and script. of what you > got. > > > Alvaro. > > > >> On 19/03/2016, at 2:37 PM, evrim Alacan <evrim...@ <>gmail.com >> <http://gmail.com/>> wrote: >> >> config.vm.box = "precise64" >> if Vagrant.has_plugin?("vagrant-cachier") >> config.cache.scope = :box >> config.cache.auto_detect = true >> end >> config.vm.box_url = "http://files.vagrantup.com/precise64.box >> <http://files.vagrantup.com/precise64.box>" > > > -- > This mailing list is governed under the HashiCorp Community Guidelines - > https://www.hashicorp.com/community-guidelines.html > <https://www.hashicorp.com/community-guidelines.html>. Behavior in violation > of those guidelines may result in your removal from this mailing list. > > GitHub Issues: https://github.com/mitchellh/vagrant/issues > <https://github.com/mitchellh/vagrant/issues> > IRC: #vagrant on Freenode > --- > You received this message because you are subscribed to the Google Groups > "Vagrant" group. > To unsubscribe from this group and stop receiving emails from it, send an > email to [email protected] > <mailto:[email protected]>. > To view this discussion on the web visit > https://groups.google.com/d/msgid/vagrant-up/2484c001-303f-4778-b373-51b08c2c1a51%40googlegroups.com > > <https://groups.google.com/d/msgid/vagrant-up/2484c001-303f-4778-b373-51b08c2c1a51%40googlegroups.com?utm_medium=email&utm_source=footer>. > For more options, visit https://groups.google.com/d/optout > <https://groups.google.com/d/optout>. -- This mailing list is governed under the HashiCorp Community Guidelines - https://www.hashicorp.com/community-guidelines.html. Behavior in violation of those guidelines may result in your removal from this mailing list. GitHub Issues: https://github.com/mitchellh/vagrant/issues IRC: #vagrant on Freenode --- You received this message because you are subscribed to the Google Groups "Vagrant" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To view this discussion on the web visit https://groups.google.com/d/msgid/vagrant-up/0E838624-F7CA-4D0E-95C2-1DEEAC58E279%40gmail.com. For more options, visit https://groups.google.com/d/optout.
