Problemas com o VirtualBox no Kali

1

Eu instalei o VirtualBox no meu Kali 4.6.0-kali1-amd64. VB lança mas quando inicio uma VM me dá o seguinte erro:

Kernel driver not installed (rc=-1908)

The VirtualBox Linux kernel driver (vboxdrv) is either not loaded or there is a permission problem with /dev/vboxdrv. Please reinstall the kernel module by executing

'/sbin/vboxconfig'

as root.

where: suplibOsInit what: 3 VERR_VM_DRIVER_NOT_INSTALLED (-1908) - The support driver is not installed. On linux, open returned ENOENT. 

Eu tentei corrigir isso de várias maneiras, mas ainda não consigo executá-lo. Como posso corrigir esse erro para que eu possa executar minha VM?

////////

Removido o VB.Downloaded the deb do site do VB. Usando apt-get install dkms build-essential linux-headers-$(uname -r) retorna o seguinte erro:

E: Unable to locate package linux-headers-4.6.0-kali1-amd64 E: Couldn't find any package by glob 'linux-headers-4.6.0-kali1-amd64' E: Couldn't find any package by regex 'linux-headers-4.6.0-kali1-amd64'

Como posso corrigir isso?

////////////////// Atualização:

Corrigido o problema dos cabeçalhos adicionando deb http://mirror.nus.edu.sg/kali/kali kali-rolling main non-free contrib à minha lista de fontes. VB Reinstalado. Agora eu recebo:

RTR3InitEx failed with rc=-1912 (rc=-1912)

The VirtualBox kernel modules do not match this version of VirtualBox. The installation of VirtualBox was apparently not successful. Executing

'/sbin/vboxconfig'

may correct this. Make sure that you do not mix the OSE version and the PUEL version of VirtualBox.

where: supR3HardenedMainInitRuntime what: 4 VERR_VM_DRIVER_VERSION_MISMATCH (-1912) - The installed support driver doesn't match the version of the user. 
    
por farewaybros 26.10.2016 / 03:51

2 respostas

2

Parece haver uma falha no log de instalação do Virtual Box.

  1. Remova o VirtualBox e reinicie o host.
  2. Verifique se tudo está atualizado.
  3. Instale os seguintes pacotes: (sudo apt-get instala dkms build-essential linux-headers - $ (uname -r))
  4. Obtenha o Virtual Box .deb ou o wget da fonte oficial.

Espero que isso ajude seu problema:)

    
por 26.10.2016 / 04:28
1

Para corrigir os problemas de cabeçalho e kernel, adicionei deb http://mirror.nus.edu.sg/kali/kali kali-rolling main non-free contrib à minha lista de fontes. Porque eu estava instalando o pacote deb do VB, eu estava conseguindo:

RTR3InitEx failed with rc=-1912 (rc=-1912)

The VirtualBox kernel modules do not match this version of VirtualBox. The installation of VirtualBox was apparently not successful. Executing

'/sbin/vboxconfig'

may correct this. Make sure that you do not mix the OSE version and the PUEL version of VirtualBox.

where: supR3HardenedMainInitRuntime what: 4 VERR_VM_DRIVER_VERSION_MISMATCH (-1912) - The installed support driver doesn't match the version of the user.

Não tenho certeza do que estava causando esse problema, mas corrigi-lo limpando a instalação deb e reinstalando o VB com apt-get install virtualbox .

    
por 28.10.2016 / 02:08