Virtualbox, dkms, linux-header e virtualbox-dkms instalados, mas dizem estar faltando?

1

Estou tentando instalar o virtualbox em um sistema BunsenLabs (Debian).

Eu confirmei que tenho tudo instalado:

$ sudo apt-get install linux-headers-$(uname -r|sed 's,[^-]*-[^-]*-,,') virtualbox dkms virtualbox-dkms
Reading package lists... Done
Building dependency tree       
Reading state information... Done
dkms is already the newest version.
linux-headers-amd64 is already the newest version.
virtualbox is already the newest version.
virtualbox-dkms is already the newest version.
0 upgraded, 0 newly installed, 0 to remove and 1 not upgraded.

(O pacote a ser atualizado é openjre-8-headless ).

No entanto, quando inicio virtualbox :

$ virtualbox 
WARNING: The character device /dev/vboxdrv does not exist.
     Please install the virtualbox-dkms package and the appropriate
     headers, most likely linux-headers-amd64.

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

Reinstalando tudo, reconfigurando tudo.

Também tenta forçar a criação do dispositivo:

$ sudo modprobe vboxdrv
modprobe: FATAL: Module vboxdrv not found.

Devo apenas criar o dispositivo manualmente? Quais outras opções eu tenho?

    
por DrakaSAN 16.05.2017 / 10:23

1 resposta

1

Depois de desinstalar a versão do debian de virtualbox e virtualbox-dkms , adicionei o repositório da Oracle :

#Add the repository
sudo echo "deb http://download.virtualbox.org/virtualbox/debian jessie contrib" > /etc/apt/source.list.d/virtualbox.list
#Add the key
curl https://www.virtualbox.org/download/oracle_vbox_2016.asc
sudo apt-key add oracle_vbox_2016.asc

Em seguida, instalei o pacote virtualbox-5.1 , que funciona bem.

Fonte: User WeblionX do canal de IRC #virtualbox do freenode.

    
por 18.05.2017 / 11:58