Tramp after upgrading to Windows 10

I try to protest after my last upgrade to Windows 10 and I get an error message:

==> default: Clearing any previously set network interfaces... There was an error while executing `VBoxManage`, a CLI used by Vagrant for controlling VirtualBox. The command and stderr is shown below. Command: ["hostonlyif", "create"] Stderr: 0%... Progress state: E_FAIL VBoxManage.exe: error: Failed to create the host-only adapter VBoxManage.exe: error: Code E_FAIL (0x80004005) - Unspecified error (extended info not available) VBoxManage.exe: error: Context: "int __cdecl handleCreate(struct HandlerArg *,int,int *)" at line 66 of file VBoxManageHostonly.cpp 

Before the update, it worked fine, did anyone understand how to fix this?

+4
source share
5 answers

Here's how I made my stroller finally work on Windows10:

  • Remove VirtualBox and Vagrant (back up your old firewalls)
  • Download and install VirtualBox and the latest version of Vagrant
+2
source

For some reason, the VirtualBox Host-Only Ethernet Adapter was removed after upgrading to Windows 10. Uninstalling, rebooting, and installing VirtualBox again led to the installation of remote Ethernet adapters, and the problem was resolved.

+1
source

Another solution is to add name: "VirtualBox Host-Only Ethernet Adapter" after config.vm.network to your Vagrant file. In my case:

 config.vm.network "private_network", ip: "192.168.33.10", name: "VirtualBox Host-Only Ethernet Adapter" 

Vagrant, Virtual Box 4.3

+1
source

Today I upgraded Windows 7 Professional to Windows 10. When I tried to boot the virtual machine (Laravel Homestead) using a stroller, it did not start.

I installed VirtualBox and Vagrant (without uninstalling and restarting the computer), and then restarting the computer. Once I have done this, the virtual machine starts up correctly.

0
source

All Articles