Zeitüberschreitung beim Warten auf den Start der Maschine!! Vagrant-Virtualbox

Zeitüberschreitung beim Warten auf den Start der Maschine!! Vagrant-Virtualbox

Ich habe einen Gentoo(Linux)-Hostcomputer. Auf diesem sind Virtualbox 4.3.28 und Vagrant 1.4.3 installiert (dies sind die neuesten verfügbaren Versionen für Gentoo).

Beim Hochfahren von Vagrant wird Ubuntu 14.04 gestartet. Ich kann auch per SSH auf Ubuntu zugreifen. Ich habe auch Vagrant Destroy und dann Vagrant Up ausprobiert. Aber sobald es gestartet wird, erhalte ich den folgenden Fehler. Unten ist mein Vagrantfile und der Ausgabefehler.

PS: Ich habe die Ubuntu 14.04-Basisbox von Grund auf neu erstellt.

Vagrant-Datei

# -*- 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 

Ausgabe im 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.

Gibt es eine Lösung, um dieses Problem zu beheben?

Antwort1

Versuchen Sie, die neueste Version für Vagrant zu erhalten.Es löste meinVagrant-bezogenes Problem.Hier ist ein Ebuild verfügbar:http://data.gpo.zugaina.org/johu/app-emulation/vagrant-bin/.

Also, Schritte, vorausgesetzt, Sie habenApp-Portage/Laiebereits installiert:

  1. layman -a johu
  2. layman -S, oder noch besser (?)eix-sync
  3. emerge -s vagrantund app-emulation/vagrant-bin, Version 1.7.4 sollte als verfügbar erscheinen
  4. emerge -av vagrant-bin

Versuchen Sie dann erneut, eine VM bereitzustellen.

verwandte Informationen