vagrant up failed,/ dev / vboxnetctl:没有这样的文件或目录

问题描述 投票:123回答:7

可以有用,我发现了这个错误。常见的解决方案是重新安装virtualbox,但有更好的方法。

sudo /Library/StartupItems/VirtualBox/VirtualBox restart

要么

sudo /Library/StartupItems/VirtualBox/VirtualBox start

VirtualBox 4.3+

在最新版本上,文件(/ Library / StartupItems / VirtualBox / VirtualBox)不存在,因此您需要使用以下命令:

sudo launchctl load /Library/LaunchDaemons/org.virtualbox.startup.plist

错误

打印:http://d.pr/i/1Bvi

执行VBoxManage时出错,这是Vagrant用来控制VirtualBox的CLI。命令和stderr如下所示:[“hostonlyif”,“create”]

Stderr:0%...进度状态:NS_ERROR_FAILURE VBoxManage:错误:无法创建仅限主机的适配器VBoxManage:错误:VBoxNetAdpCtl:添加新接口时出错:无法打开/ dev / vboxnetctl:没有此类文件或目录

VBoxManage:错误:详细信息:代码NS_ERROR_FAILURE(0x80004005),组件HostNetworkInterface,接口IHostNetworkInterface VBoxManage:错误:上下文:文件VBoxManageHostonly.cpp第68行的“int handleCreate(HandlerArg *,int,int *)”

Vagrant Git关于错误的问题:https://github.com/mitchellh/vagrant/issues/1671#issuecomment-22304107

virtualbox vagrant
7个回答
41
投票

我正在运行macOS High Sierra 10.13.1和VirtualBox 5.2.2。

This worked for me:

  1. 在“系统偏好设置”>“安全和隐私”>“常规”下授予VirtualBox权限(此请求是macOS High Sierra的新增内容)
  2. 打开终端并运行:sudo "/Library/Application Support/VirtualBox/LaunchDaemons/VirtualBoxStartup.sh" restart

25
投票

如果您的系统最近更新了内核,则许多人需要再次重新运行vbox设置。如果是这种情况,则在运行virtualbox start命令时将看到以下消息:

$ sudo /path/to/virtualbox start
WARNING: The vboxdrv kernel module is not loaded. Either there is no module
         available for the current kernel (2.6.32-358.23.2.el6.x86_64) or it failed to
         load. Please recompile the kernel module and install it by

           sudo /etc/init.d/vboxdrv setup

         You will not be able to start VMs until this problem is fixed.

4
投票

尝试了所有补救措施,虽然执行了很少的命令但是没有用。我的Mac(el captain)sort / Library / StartupItems / Vir *中没有任何内容,并且下面的命令失败:

sudo /Library/StartupItems/VirtualBox/VirtualBox restart

重新安装最新的VirtualBox,然后运行下面的命令帮助我运行VM

sudo launchctl load /Library/LaunchDaemons/org.virtualbox.startup.plist

4
投票

我在High Sierra的虚拟盒子上遇到了类似的问题。

macOS High Sierra 10.13引入了一项新功能,需要用户批准才能加载新安装的第三方内核扩展(KEXT)。当请求加载用户尚未批准的KEXT时,拒绝加载请求。将KEXT加载失败视为硬错误的应用程序或安装程序将需要更改以处理此新案例。

要解决此问题,您必须在“系统偏好设置”>“安全和隐私”中手动批准KEXT。

以下是Apple的技术说明:

https://developer.apple.com/library/content/technotes/tn2459/_index.html


3
投票

$ sudo modprobe vboxdrv
$ sudo modprobe vboxnetadp
$ sudo vboxreload

2
投票

当我收到错误时......

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: NS_ERROR_FAILURE
VBoxManage: error: Failed to create the host-only adapter
VBoxManage: error: VBoxNetAdpCtl: Error while adding new interface: failed to open          /dev/vboxnetctl: No such file or directory

VBoxManage: error: Details: code NS_ERROR_FAILURE (0x80004005), component HostNetworkInterface,   interface IHostNetworkInterface
VBoxManage: error: Context: "int handleCreate(HandlerArg*, int, int*)" at line 68 of file    VBoxManageHostonly.cpp

以下为我工作,并没有返回任何错误,我可以成功地带来流浪汉

sudo /Library/StartupItems/VirtualBox/VirtualBox restart

0
投票

我被困在这一段时间了。在尝试运行sudo:/ Library ..命令时,我一直看到'命令未找到'。

但是,这对我有用:

sudo /Library/Application\ Support/VirtualBox/LaunchDaemons/VirtualBoxStartup.sh restart
© www.soinside.com 2019 - 2024. All rights reserved.