我昨天把我的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和扩展包, 重新配置主机以太网适配器,但总是相同的错误…

什么好主意吗?


当前回答

在尝试再次创建VirtualBox主机专用适配器之前,您可以尝试在除实际物理网络适配器之外的所有网络适配器上禁用“VirtualBox NDIS6桥接网络驱动程序”。

请看这个答案。

其他回答

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

我尝试了这个页面上的每一种方法(谢谢大家!)。毫无效果。几个小时后,我终于让它工作了。

我的问题是,我没有在“步骤出错'检查默认状态'”之前出现错误。

start.sh脚本中的这一行失败了。

VM_STATUS="$( set +e ; "${DOCKER_MACHINE}" status "${VM}" )"

在命令提示符中运行下面的行,并返回“Running”。

D:\Dev\DockerToolbox\docker-machine.exe status default

所以我开始跟踪Github链接中的所有修复程序,并找到了修复程序。

在start.sh脚本中,我更改了这一行

VM_STATUS="$( set +e ; "${DOCKER_MACHINE}" status "${VM}" )"

to

VM_STATUS="$(${DOCKER_MACHINE} status ${VM})"

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

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

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

这对我很管用。

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

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

对我来说,我不得不删除我的用户目录中的。virtualbox和。docker文件夹…结果很好

对我来说,禁用和启用网络连接不足以让它工作。 我必须删除我的家庭用户(c:/Users/your_user/.docker/)中的。docker存储库的内容。 在这之后,我重新安装Docker Toolbox和VitualBox,并使用machzqcq提示检查NDIS5驱动程序安装的virtualbox。

我在这里找到了答案:https://github.com/docker/toolbox/issues/473