VirtualBox não está instalado no Ubuntu 14.04 LTS

0

Estou tentando fazer o VirtualBox funcionar na minha máquina 14.04 LTS. Após a instalação, continuo recebendo este erro:

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:

Vagrant could not detect VirtualBox! Make sure VirtualBox is properly     installed.
Vagrant uses the 'VBoxManage' binary that ships with VirtualBox, and requires
this to be available on the PATH. If VirtualBox is installed, please  find the
'VBoxManage' binary and add it to the PATH environmental variable.

Após a instalação, recebi este erro:

Stopping VirtualBox kernel modules                                    [ OK ] 
Starting VirtualBox kernel modules                                            No suitable module for running kernel found
                                                                         [fail]
invoke-rc.d: initscript virtualbox, action "restart" failed.
Processing triggers for ureadahead (0.100.0-16) ...
Setting up virtualbox-dkms (4.3.10-dfsg-1ubuntu5) ...
Loading new virtualbox-4.3.10 DKMS files...
First Installation: checking all kernels...
Building only for 3.19.0-26-generic
Building initial module for 3.19.0-26-generic
Error! Bad return status for module build on kernel: 3.19.0-26-generic (x86_64)
Consult /var/lib/dkms/virtualbox/4.3.10/build/make.log for more information.
Stopping VirtualBox kernel modules                                    [ OK ] 
Starting VirtualBox kernel modules                                            * No suitable module for running kernel found
    
por sanders 08.09.2015 / 18:51

2 respostas

2

parece que você está tentando instalar o vagrant, que requer que o virtualbox seja instalado, então tente instalá-lo explicitamente primeiro

vejo 3 versões diferentes disponíveis para instalar

virtualbox-4.2 - Oracle VM VirtualBox
virtualbox-4.3 - Oracle VM VirtualBox
virtualbox-5.0 - Oracle VM VirtualBox

Instale com este comando (a versão 5.0 possui suporte a USB 3.0), isso também instalará os módulos de kernel necessários

sudo apt-get install virtualbox-5.0
    
por bistoco 08.09.2015 / 19:21
1

Eu tive uma versão diferente dos meus cabeçalhos de kernel e meu kernel. Para testar isso, dê uma olhada na saída de

uname -r

e compare isso com as pastas em

/lib/modules

se forem diferentes, primeiro use o apt-get para remover os cabeçalhos do kernel e depois use

sudo apt-get install linux-generic

para instalar os cabeçalhos e o kernel para a versão correta. Depois disso, você pode ter que reinstalar o VirtualBox e / ou usar

modprobe vboxdrv

mas você deve estar em funcionamento.

    
por user1165471 09.09.2015 / 08:00