From 5a6600abecb50e344b7aa6eaf03a181dbbbb08c0 Mon Sep 17 00:00:00 2001 From: Dimitrios Kouzis-Loukas Date: Thu, 8 Sep 2016 01:44:38 +0100 Subject: [PATCH] Comment on unsupported network card If you get ``` cloud-init-nonet[4.54]: waiting 10 seconds for network device cloud-init-nonet[14.57]: waiting 120 seconds for network device cloud-init-nonet[134.57]: gave up waiting for a network device. ``` Your netowrk card is not supported with the default adapter. See [here](https://github.com/mitchellh/vagrant/issues/3860#issuecomment-167664778). Try to uncomment the lines above. --- Vagrantfile.32 | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/Vagrantfile.32 b/Vagrantfile.32 index 525ac75..1efcc2d 100644 --- a/Vagrantfile.32 +++ b/Vagrantfile.32 @@ -25,5 +25,14 @@ Vagrant.configure("2") do |config| vb.name = "scrapy-vm-32" vb.check_guest_additions = false vb.cpus = 1 + # If you get: cloud-init-nonet[4.54]: waiting 10 seconds for network device + # cloud-init-nonet[14.57]: waiting 120 seconds for network device + # cloud-init-nonet[134.57]: gave up waiting for a network device. + # Your netowrk card is not supported with the default adapter. + # See: https://github.com/mitchellh/vagrant/issues/3860#issuecomment-167664778 + # Try to uncomment the following two lines: + # + # vb.customize ["modifyvm", :id, "--nictype1", "Am79C973"] + # vb.customize ["modifyvm", :id, "--nictype2", "Am79C973"] end end