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

什么好主意吗?


当前回答

我找到了解决问题的办法, 在我的网络适配器中有一个冲突,我只是禁用了错误消息中出现的那个,然后再次启动运行命令,在从窗口获得许多批准消息后,已经创建了一个新的适配器。

我希望这个解决方案能在某些情况下有所帮助。

其他回答

在我的情况下,我只做:

1-像下图一样更新Hyper-V配置。

2-重启机器。

3 .运行virtualbox

4-跑流浪汉起来

我从Windows 7升级到Windows 10后也遇到了同样的问题。试了所有流行的答案,但都没用。最后,我知道Windows更改了适配器的名称。虚拟盒配置为使用Realtek PCIe GBE系列控制器,而设备管理器将此作为Realtek PCIe GBE系列控制器#2。选择合适的控制器解决了这个问题。

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

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

更新Windows时出现了同样的错误。 尝试一切。毫无效果。

最后,进入设备管理器->网络适配器 禁用并启用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})"