OK, solved it. The boot process was being hidden by Ubuntu. It added "console=tty1 console=tty0" to the kernel line of the Grub config. I booted the box directly with VirtualBox and entered the Grub menu to remove them prior to booting. Doing so displayed the entire boot process. It was waiting on network connectivity for more than three minutes in total.
Turns out the directives Vagrant had automatically inserted for eth1 into /etc/network/interfaces were causing this. eth1 was a bridged interface, bound to en0 (Airport) on my Mac. I removed the interface from Vagrantfile, but the delays persisted. The eth1 removal did not make Vagrant update /etc/network/interfaces, so I removed the section by hand. This fixed it. The box now boots in under 20 seconds. I'm making do without the bridged interface with a host-only interface and some pfctl port forwards on the Mac side. -- 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]. For more options, visit https://groups.google.com/groups/opt_out.
