2016-10-18 4 views
1

Ich hatte ein virtuelles Ubuntu-Droplet mit Vagrant für den Entwicklungszweck auf meinem Ubuntu-System konfiguriert. Nun, ich bin nicht in der Lage, die virtuelle Maschine zu starten, auf mit dem Befehl vagrant up, wird folgende Fehlermeldung kommen:Virtualbox: Daten von Vagrant Ubuntu-Umgebung abrufen

Bringing machine 'default' up with 'virtualbox' provider... 
==> default: Checking if box 'hashicorp/precise64' is up to date... 
==> default: Clearing any previously set forwarded ports... 
==> default: Clearing any previously set network interfaces... 
==> default: Preparing network interfaces based on configuration... 
    default: Adapter 1: nat 
    default: Adapter 2: bridged 
==> default: Forwarding ports... 
    default: 8080 (guest) => 2200 (host) (adapter 1) 
    default: 22 (guest) => 2222 (host) (adapter 1) 
==> default: Running 'pre-boot' VM customizations... 
==> default: Booting VM... 
There was an error while executing `VBoxManage`, a CLI used by Vagrant 
for controlling VirtualBox. The command and stderr is shown below. 

Command: ["startvm", "9295efec-36d1-4aed-932d-ddd5785df28b", "--type", "headless"] 

Stderr: VBoxManage: error: Failed to open/create the internal network 'HostInterfaceNetworking-eth0' (VERR_SUPDRV_COMPONENT_NOT_FOUND). 
VBoxManage: error: Failed to attach the network LUN (VERR_SUPDRV_COMPONENT_NOT_FOUND). 
VBoxManage: error: One of the kernel modules was not successfully loaded. Make sure that no kernel modules from an older version of VirtualBox exist. Then try to recompile and reload the kernel modules by executing '/sbin/vboxconfig' as root (VERR_SUPDRV_COMPONENT_NOT_FOUND) 
VBoxManage: error: Details: code NS_ERROR_FAILURE (0x80004005), component ConsoleWrap, interface IConsole 

Ich bin nicht sicher, was den Fehler verursacht hat, da ich keine Änderungen in der Konfiguration vorgenommen hatte. Wie auch immer, jetzt suche ich nach den Daten, die in der virtuellen Maschine gespeichert wurden, da die Backup-Daten, die ich habe, nicht vollständig aktualisiert werden. Jeder Rat wäre sehr hilfreich. Danke im Voraus!

Antwort

1

Der Fehler, den Sie erhalten, wenn die falschen Module mit diesem Beispiel (/ sbin/vboxconfig) geladen oder geladen wurden, eine Schale mit sudo öffnen und versuchen, die folgenden

>sudo su - 
>/sbin/rcvboxdrv setup" 

Unloading modules: vboxdrv 
Loading modules: vboxnetadp vboxnetflt vboxpci vboxdrv 

auf dem Sicherstellen, neueste Version von virtuabox 5.0.12 oder höher. Problem auf Virtualbox.org in Bezug auf diese https://www.virtualbox.org/ticket/14723

Verwandte Themen