mismo problema conmigo, abortarlo si no usa vagabundo.
la salida cuando ejecuto 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.
salida 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
salida sudo /sbin/rcvboxdrv setup
:
Bad argument setup
Mi problema se resolvió después de ejecutar 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
que se ejecutara.Siempre puede usar modprobe para agregar un módulo de kernel. Resolví el mismo problema en mi servidor haciendo:
fuente
sudo /sbin/rcvboxdrv setup
. AFAIR hoy en día este comando se menciona en el mensaje de error, en lugar desudo /sbin/vboxconfig
.Esto parece ser un error conocido .
Ejecutar los siguientes comandos soluciona el problema:
Desafortunadamente, tendrá que ejecutar estos comandos después de cada reinicio.
fuente
rcvboxdrv setup
compila el módulo y lo configura con el núcleo actualmente en ejecución.La solución para esto fue instalar el paquete linux-headers
fuente