Emita arquivos de cabeçalho do kernel para instalar o VirtualBox no Debian

0

estou tentando instalar o virtual box-5.2 (peguei o arquivo .deb do site) no meu trecho do Debian 9. Atualmente eu tenho o Kernel: Linux 4.9.0

Quando eu executo: sudo dpkg -I virtualbox-5.2_5.2.12-122591~Debian~stretch_amd64.deb recebo a seguinte mensagem de erro:

This system is currently not set up to build kernel modules.
Please install the Linux kernel "header" files matching the current kernel
for adding new hardware support to the system.
This system is currently not set up to build kernel modules.
Please install the Linux kernel "header" files matching the current kernel
for adding new hardware support to the system.

There were problems setting up VirtualBox.  To re-start the set-up process, run
/sbin/vboxconfig
as root.

Mas quando estou tentando instalar ou atualizar os arquivos de cabeçalho com: sudo apt-get install linux-headers-$(uname -r) , o linux informa que os arquivos de cabeçalho já estão instalados. E quando eu executo /sbin/vboxconfig , recebo a mesma mensagem de erro acima.

Alguém poderia ajudar com esse problema? Obrigado!

    
por auenal 25.06.2018 / 18:51

1 resposta

0

Se você usar gdebi , deverá inserir todas as dependências.

Eu adicionei a caixa virtual a /etc/apt/source.list.d/virtual-box.apt-sources.list

echo "deb http://download.virtualbox.org/virtualbox/debian jessie contrib" |sudo tee /etc/apt/source.list.d/virtual-box.apt-sources.list
sudo apt-get update
sudo apt-get install virtualbox-5.2 #would be nice if we could just specify the series.
    
por 25.06.2018 / 19:38