Precisa de ajuda para instalar o VirtualBox no Ubuntu 12.04

1

Eu estou rodando no chroot e o arquivo de log lê:

    Uninstalling modules from DKMS
    Attempting to install using DKMS

    Creating symlink /var/lib/dkms/vboxhost/5.0.2/source ->
             /usr/src/vboxhost-5.0.2

    DKMS: add completed.
    Failed to install using DKMS, attempting to install without
    Makefile:185: *** Error: unable to find the sources of your current 
    Linux kernel. Specify KERN_DIR=<directory> and run Make again.  Stop.

Ajuda por favor.

    
por Mike 07.09.2015 / 09:22

1 resposta

1

Instale os arquivos de cabeçalho do kernel.

Inicie o comando abaixo para fazer uma verificação

apt-cache policy linux-generic | grep Installed
  • Se você vir uma versão atrás de Installed: , com um número de versão

    Installed: 3.19.0.26.25
    

    depois, inicie

    sudo apt-get install linux-headers-generic
    
  • se você ver

    Installed: (none)
    

    começar

    sudo apt-get install kernel-headers-$(uname -r)
    
por A.B. 07.09.2015 / 09:39