Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Error while executing `VBoxManage` (Vagrant/Virtualbox)

After first running vagrant up in my homestead directory my computer bluescreened because Hyper-V was enabled. Now after disabling Hyper-V and running vagrant up I get this error:

There was an error while executing `VBoxManage`, a CLI used by Vagrant
for controlling VirtualBox. The command and stderr is shown below.

Command: ["showvminfo","\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"]

Stderr:

I have the latest Version of Vagrant and VirtualBox installed.

like image 566
Kai Herrmann Avatar asked Dec 14 '22 20:12

Kai Herrmann


1 Answers

To solve this problem, you need to delete the folder .vagrant in the root directory of your project. Then run the command vagrant up again.

like image 172
StoRo17 Avatar answered Dec 16 '22 08:12

StoRo17