我昨天把我的Windows 10升级到最后一次更新,现在,当我启动vagrant up命令时,我得到了这个错误:

==> default: Booting VM...
==> default: Waiting for machine to boot. This may take a few minutes...
The guest machine entered an invalid state while waiting for it
to boot. Valid states are 'starting, running'. The machine is in the
'poweroff' state. Please verify everything is configured
properly and try again.

If the provider you're using has a GUI that comes with it,
it is often helpful to open that and watch the machine, since the
GUI often has more helpful error messages than Vagrant can retrieve.
For example, if you're using VirtualBox, run `vagrant up` while the
VirtualBox GUI is open.

The primary issue for this error is that the provider you're using
is not properly configured. This is very rarely a Vagrant issue.

当我尝试与GUI我有这个错误:

Failed to open/create the internal network 'HostInterfaceNetworking-VirtualBox Host-Only Ethernet Adapter' (VERR_INTNET_FLT_IF_NOT_FOUND).
Failed to attach the network LUN (VERR_INTNET_FLT_IF_NOT_FOUND).

我重新安装了VirtualBox 5.0.10和扩展包, 重新配置主机以太网适配器,但总是相同的错误…

什么好主意吗?


当前回答

Open Control Panel >> Network and Sharing Center. Now click on Change Adapter Settings. Right click on the adapter whose Name or the Device Name matches with VirtualBox Host-Only Ethernet Adapter # 3 and click on Properties. Click on the Configure button. Now click on the Driver tab. Click on Update Driver. Select Browse my computer for drivers. Now choose Let me pick from a list of available drivers on my computer. Select the choice you get and click on Next. Click Close to finish the update. Now go back to your Terminal/Powershell/Command window and repeat the vagrant up command. It should work fine this time.

https://www.howtoforge.com/setup-a-local-wordpress-development-environment-with-vagrant/

其他回答

我找到了解决办法

打开Windows网络连接 右键单击已创建的VirtualBox主机专用适配器 选择属性 检查“VirtualBox NDIS6桥接网络驱动程序” 禁用和启用适配器

Windows 10操作系统 在花了3个小时卸载和重新安装minikube, virtualbox后,没有解决问题,我看到我的网络适配器 控制面板->网络和Internet->网络连接窗口。 有3个启用的“VirtualBox主机专用以太网适配器”。 我把它们都禁用了。 然后在服务屏幕上(运行->services.msc)找到Tcp/Ip NetBIOS帮助程序 然后重新启动。

将创建一个具有正确名称的新网络适配器,如“VirtualBox Host-Only network #3”。 现在类型: minikube删除 mnikube开始 这对我很管用。 希望它能帮助到某人! 我讨厌这个:)

新的NDIS6驱动程序有一个已知的问题,你可以安装它来使用NDIS5驱动程序

尝试使用参数重新安装(以管理员身份运行)

> virtualbox -5.0.11-104101- win exe -msiparams NETWORKTYPE=NDIS5

这对我很管用。

更新:新版本更容易从安装向导中选择NDIS驱动程序——当被要求时选择NDIS5。

裁判:https://www.virtualbox.org/manual/ch02.html # install-win-performing

这两个答案并没有解决我的问题,但把它们结合起来,我就能解决问题。 我的情况是,我试图在Windows 7 pc上安装和运行Docker,并不断得到一个错误: “看起来好像出了什么问题……按任意键继续…”

经过深入研究,我发现这个问题与Docker创建的主机网络适配器有关。 我安装了NDIS6驱动程序,但它是启用的。我试着取消检查,禁用,重新检查,启用等,但它没有帮助。

然后我卸载VB并按照第一个答案重新安装以获得NDIS5驱动程序。 这是未经检查的,所以检查它,我能够过去这个问题。

卸载Virtualbox并安装最新版本,在回答这个问题时,它是5.12。我安装了Vagrant,它会自动安装Virtualbox 5.10。我在安装Windows 1511更新后遇到了这个问题,卸载Vagrant提供的Virtualbox并安装最新版本解决了这个问题。