Re: [vagrant-up] Vagrant ssh non functional if box booted with vagrant up

2018-03-14 Thread 'Marcus Povey' via Vagrant
Thanks, I've switched boxes. This also *seems* to have solved the issue where the VM would randomly spew out IO errors and become read only during provisioning. On Tuesday, 13 March 2018 20:11:00 UTC, Alvaro Miranda Aguilera wrote: > > for xenial if you want shared folder and the box doesn't hav

Re: [vagrant-up] Vagrant ssh non functional if box booted with vagrant up

2018-03-13 Thread Alvaro Miranda Aguilera
for xenial if you want shared folder and the box doesn't have it, use a different box will be easier ie https://app.vagrantup.com/cbednarski/boxes/ubuntu-1604 On Tue, Mar 13, 2018 at 3:22 PM, 'Marcus Povey' via Vagrant < vagrant-up@googlegroups.com> wrote: > ... and I think this is down to va

Re: [vagrant-up] Vagrant ssh non functional if box booted with vagrant up

2018-03-13 Thread 'Marcus Povey' via Vagrant
... and I think this is down to vagrant-vbguest failing, for some reason the guest OS is becoming readonly randomly during boot. No clue what's going on there On Tuesday, 13 March 2018 13:49:04 UTC, Marcus Povey wrote: > > Thought about this some more, and it's obvious what's going on... > >

Re: [vagrant-up] Vagrant ssh non functional if box booted with vagrant up

2018-03-13 Thread 'Marcus Povey' via Vagrant
Thought about this some more, and it's obvious what's going on... authorized_keys is in /home/vagrant, so *obviously*, when I mount my working directory over that, it becomes inaccessible. *doh* Of course now, I'm running into a separate problem, whereby if I mount to /vagrant, mounting doesn't

Re: [vagrant-up] Vagrant ssh non functional if box booted with vagrant up

2018-03-13 Thread 'Marcus Povey' via Vagrant
Hi, thank you for your help. I've done a little bit of digging, as you suggested. The problem appears to be with the synced_folder entry. Before this, I could ssh in, if the box is provisioned with this line, SSH is no longer possible. This with the ubuntu/xenial box, updated to latest. If I s

Re: [vagrant-up] Vagrant ssh non functional if box booted with vagrant up

2018-03-13 Thread Alvaro Miranda Aguilera
Hello Well what I said was basically start minimal and do a change as the time start with a Vagrantfile like this: Vagrant.configure("2") do |config| #config.ssh.insert_key = false #config.vm.box = "ubuntu/xenial64" config.vm.box = "hashicorp/precise64" #config.vm.boot_timeout = 6

Re: [vagrant-up] Vagrant ssh non functional if box booted with vagrant up

2018-03-12 Thread 'Marcus Povey' via Vagrant
Hi, thanks for getting back to me. I tried what you said, both on my own computer and my colleague's computer. Both cases after bringing up the box with no provisioning, vagrant ssh failed. Here's the Vagrantfile: Vagrant.configure("2") do |config| config.ssh.insert_key = false config.

Re: [vagrant-up] Vagrant ssh non functional if box booted with vagrant up

2018-03-11 Thread Alvaro Miranda Aguilera
share a zip with the project or the Vagrantfile if you don' have any provision. I would say 1. try like this vagrant destroy vagrant up --no-provision vagrant ssh vagrant reload works? if yes, something is breaking this 2. try with a different box vagrant destroy vagrant up --no-provision va