¡¡Tiempo de espera mientras se espera que se inicie la máquina!! Vagrant-Virtualbox

¡¡Tiempo de espera mientras se espera que se inicie la máquina!! Vagrant-Virtualbox

Tengo una máquina host gentoo (linux). En el cual tengo instalado Virtualbox 4.3.28 y vagrant 1.4.3 (estas son la última versión disponible para gentoo).

Al actualizar, se lanza Ubuntu 14.04. También puedo enviar ssh a Ubuntu. También probé vagrant destroy y luego vagrant up. Pero tan pronto como se inicia, aparece el siguiente error. A continuación se muestra mi Vagrantfile y el error de salida.

PD: He creado la caja base de Ubuntu 14.04 desde cero.

Archivo vagabundo

# -*- mode: ruby -*-

# vi: set ft=ruby :

    Vagrant.configure(2) do |config|
      config.vm.box = "Ubuntu"
      config.vm.boot_timeout = "700"
      config.vm.provider :virtualbox do |vb|
      vb.gui = true
      end

    end 

Salida en terminal

Bringing machine 'default' up with 'virtualbox' provider...
[default] Clearing any previously set forwarded ports...
[default] Clearing any previously set network interfaces...
[default] Preparing network interfaces based on configuration...
[default] Forwarding ports...
[default] -- 22 => 2222 (adapter 1)
[default] Booting VM...
[default] Waiting for machine to boot. This may take a few minutes...

Timed out while waiting for the machine to boot. This means that
Vagrant was unable to communicate with the guest machine within
the configured ("config.vm.boot_timeout" value) time period. This can
mean a number of things.

If you're using a custom box, make sure that networking is properly
working and you're able to connect to the machine. It is a common
problem that networking isn't setup properly in these boxes.
Verify that authentication configurations are also setup properly,
as well.

If the box appears to be booting properly, you may want to increase
the timeout ("config.vm.boot_timeout") value.

¿Alguna solución para solucionar este problema?

Respuesta1

Intente obtener la última versión para vagabundo.resolvió miproblema relacionado con vagabundos.Aquí hay un ebuild disponible:http://data.gpo.zugaina.org/johu/app-emulation/vagrant-bin/.

Entonces, pasos, dado que tienesapp-portage/laicoya instalado:

  1. layman -a johu
  2. layman -S, o mejor (?)eix-sync
  3. emerge -s vagranty app-emulation/vagrant-bin, la versión 1.7.4 debería aparecer como disponible
  4. emerge -av vagrant-bin

Luego, vuelva a intentar aprovisionar una máquina virtual.

información relacionada