Windows 10更新后流浪汉停止工作

chrx

在最近的Windows 10更新之后,我无业游民的虚拟机停止工作,拒绝从开始vagrant up该问题似乎与我用于我的VM的Virtualbox提供程序有关,并且仅在Vagrantfile中配置了private_network的情况下出现,而端口转发和这两个端口public_network都起作用。

我已经经历了类似的问题,我第一次更新我的操作系统从Windows 7到Windows 10在这种情况下,我解决了问题,与VirtualBox虚拟的补丁票14040 ; 但是,在应用新的Windows更新后,修补程序解决方案将不再起作用。

我还尝试将VirtualBox和Vagrant都更新为最新版本,但这并没有改变。

这是我的Windows / Virtualbox / Vagrant版本:

Microsoft Windows 10 version 1511 (build SO 10586.14)
VirtualBox version 5.0.10 r104061
Vagrant version 1.7.4

这是我启动时遇到的错误vagrant up

Bringing machine 'default' up with 'virtualbox' provider...
==> default: Clearing any previously set forwarded ports...
==> default: Clearing any previously set network interfaces...
==> default: Preparing network interfaces based on configuration...
    default: Adapter 1: nat
    default: Adapter 2: hostonly
==> default: Forwarding ports...
    default: 22 => 2222 (adapter 1)
==> default: Running 'pre-boot' VM customizations...
==> 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.

以下是尝试从Virtualbox用户界面启动VM时Virtualbox显示的错误:

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

Codice 'uscita: 
E_FAIL (0x80004005)
Componente: 
ConsoleWrap
Interfaccia: 
IConsole {872da645-4a9b-1727-bee2-5585105b9eed}

最后,这里是我的Vagrantfile的相关部分;如前所述,如果我注释该private_network行,机器将启动:

# -*- mode: ruby -*-
# vi: set ft=ruby :

VAGRANTFILE_API_VERSION = "2"

Vagrant.configure(VAGRANTFILE_API_VERSION) do |config|
    config.vm.box = "ubuntu-14.04-amd64-docker"
      config.vm.box_url = "https://github.com/jose-lpa/packer-ubuntu_14.04/releases/download/v2.0/ubuntu-14.04.box"
      config.vm.hostname = "falcon.staging"
    config.vm.network "private_network", ip: "192.168.33.114"
    config.vm.provider "virtualbox" do |vb|
        vb.gui = false
        vb.memory = "2048"
    end
    ...
end
DocumentUS

我有同样的问题。在此博客上找到的解决方案有所帮助:http : //codeworks.it/blog/?p=329

基本上,在更新之后,Windows会从VirtualBox仅主机网络“神奇地”关闭VirtualBox NDIS6桥接网络驱动程序

要修复它,您应该在Windows中检查您的网络接口:

  • 在“ VirtualBox仅主机网络”属性中,请检查是否勾选了VirtualBox NDIS6桥接网络驱动程序。
  • 如果没有-勾选:)

去检查一下是否有帮助,我敢打赌;)

本文收集自互联网,转载请注明来源。

如有侵权,请联系[email protected] 删除。

编辑于
0

我来说两句

0条评论
登录后参与评论

相关文章

来自分类Dev

流浪汉Windows 10``挂起''

来自分类Dev

流浪汉Windows 10``挂起''

来自分类Dev

Windows 10上的流浪汉安装失败

来自分类Dev

Windows 10周年更新后,Internet连接共享停止工作

来自分类Dev

流浪汉成功后如何开始使用Windows box?

来自分类Dev

Windows 10主机上ubuntu / xenial64和腻子的流浪汉盒

来自分类Dev

Windows 10主机上ubuntu / xenial64和腻子的流浪汉盒

来自分类Dev

更新Windows后Browser.ExecScript()停止工作

来自分类Dev

流浪汉+作曲家+ Windows / nfs / git错误

来自分类Dev

流浪汉-创建Windows计算机并运行exe

来自分类Dev

升级到Windows 10后我的程序停止工作

来自分类Dev

Windows批处理脚本在几次迭代后停止工作

来自分类Dev

Windows批处理脚本在几次迭代后停止工作

来自分类Dev

宅基地laravel流浪汉不允许Windows

来自分类Dev

流浪汉以Windows为主机,由于crlf,文件无法在vm上运行

来自分类Dev

为什么Windows 8上的流浪汉vvv无法运行?

来自分类Dev

流浪汉:如何为Windows主机禁用NFS同步文件夹?

来自分类Dev

Windows 10开始菜单停止工作

来自分类Dev

Windows 10使我的大多数游戏停止工作

来自分类Dev

Windows 10“远程桌面连接已停止工作。”

来自分类Dev

Windows 10开始菜单某些项目停止工作

来自分类Dev

Windows Git停止工作

来自分类Dev

升级到Windows 10版本1809后,Print Option在Adobe Acrobat Reader DC中停止工作

来自分类Dev

Windows 更新后麦克风停止工作(Microsoft Surface Pro 7,耳机连接到 USB-C 集线器)

来自分类Dev

流浪汉bash别名不更新

来自分类Dev

更改Windows密码后Windows 7计划的任务停止工作

来自分类Dev

Windows 8.1更新后出现流浪错误

来自分类Dev

如何使用流浪汉rdp进入win2012r2 VM,但不登录Windows帐户?

来自分类Dev

Windows::UI::Popups::MessageDialog 停止工作

Related 相关文章

  1. 1

    流浪汉Windows 10``挂起''

  2. 2

    流浪汉Windows 10``挂起''

  3. 3

    Windows 10上的流浪汉安装失败

  4. 4

    Windows 10周年更新后,Internet连接共享停止工作

  5. 5

    流浪汉成功后如何开始使用Windows box?

  6. 6

    Windows 10主机上ubuntu / xenial64和腻子的流浪汉盒

  7. 7

    Windows 10主机上ubuntu / xenial64和腻子的流浪汉盒

  8. 8

    更新Windows后Browser.ExecScript()停止工作

  9. 9

    流浪汉+作曲家+ Windows / nfs / git错误

  10. 10

    流浪汉-创建Windows计算机并运行exe

  11. 11

    升级到Windows 10后我的程序停止工作

  12. 12

    Windows批处理脚本在几次迭代后停止工作

  13. 13

    Windows批处理脚本在几次迭代后停止工作

  14. 14

    宅基地laravel流浪汉不允许Windows

  15. 15

    流浪汉以Windows为主机,由于crlf,文件无法在vm上运行

  16. 16

    为什么Windows 8上的流浪汉vvv无法运行?

  17. 17

    流浪汉:如何为Windows主机禁用NFS同步文件夹?

  18. 18

    Windows 10开始菜单停止工作

  19. 19

    Windows 10使我的大多数游戏停止工作

  20. 20

    Windows 10“远程桌面连接已停止工作。”

  21. 21

    Windows 10开始菜单某些项目停止工作

  22. 22

    Windows Git停止工作

  23. 23

    升级到Windows 10版本1809后,Print Option在Adobe Acrobat Reader DC中停止工作

  24. 24

    Windows 更新后麦克风停止工作(Microsoft Surface Pro 7,耳机连接到 USB-C 集线器)

  25. 25

    流浪汉bash别名不更新

  26. 26

    更改Windows密码后Windows 7计划的任务停止工作

  27. 27

    Windows 8.1更新后出现流浪错误

  28. 28

    如何使用流浪汉rdp进入win2012r2 VM,但不登录Windows帐户?

  29. 29

    Windows::UI::Popups::MessageDialog 停止工作

热门标签

归档