mesmo problema comigo, abortá-lo se você não usar vagabundo.
a saída quando executo vagrant up
:
The provider 'virtualbox' that was requested to back the machine
'default' is reporting that it isn't usable on this system. The
reason is shown below:
VirtualBox is complaining that the kernel module is not loaded. Please
run `VBoxManage --version` or open the VirtualBox GUI to see the error
message which should contain instructions on how to fix this error.
saída VBoxManage --version
:
WARNING: The vboxdrv kernel module is not loaded. Either there is no module
available for the current kernel (3.19.0-47-generic) or it failed to
load. Please recompile the kernel module and install it by
sudo /sbin/rcvboxdrv setup
You will not be able to start VMs until this problem is fixed.
5.0.14r105127
saída sudo /sbin/rcvboxdrv setup
:
Bad argument setup
Meu problema foi resolvido após executar este comando sudo /usr/lib/virtualbox/vboxdrv.sh setup
$ sudo /usr/lib/virtualbox/vboxdrv.sh setup
Stopping VirtualBox kernel modules ...done.
Recompiling VirtualBox kernel modules ...done.
Starting VirtualBox kernel modules ...done.
$ VBoxManage --version
5.0.14r105127
vagrant up
isso para funcionar.Você sempre pode usar o modprobe para adicionar um módulo do kernel. Resolvi o mesmo problema no meu servidor, fazendo:
fonte
sudo /sbin/rcvboxdrv setup
. Atualmente, o AFAIR é mencionado na mensagem de erro, em vez desudo /sbin/vboxconfig
.Este parece ser um bug conhecido .
A execução dos seguintes comandos corrige o problema:
Infelizmente, você precisará executar esses comandos após cada reinicialização.
fonte
rcvboxdrv setup
compila o módulo e o configura com o kernel atualmente em execução.A correção para mim foi instalar o pacote linux-headers
fonte