Não é possível instalar adições de convidado do VirtualBox em Kali

3

Estou com erros ao tentar instalar o Virtualbox Guest Additions em uma nova instalação do Kali Linux 64-bit. O Windows 10 de 64 bits é o sistema operacional host.

  1. apt-get update
  2. apt-get upgrade -y
  3. apt-get dist-upgrade -y
  4. apt-get install linux-headers-$(uname -r)

Depois de executar o passo 4, aparece o seguinte erro

E: Unable to locate package 'linux-headers-4.9.0-kali3-amd64'
E: Couldn't find any package by glob 'linux-headers-4.9.0-kali3-amd64'
E: Couldn't find any package by regex 'linux-headers-4.9.0-kali3-amd64'
  1. Copied VBoxGuestAdditions.run do disco VBOXADDITIONS_5.1.22_1115126 montado para /root/Desktop

  2. chmod 755 ./VBoxLinuxAdditions.run

  3. ./VBoxAdditions.run

A execução da etapa 7 forneceu o erro:

vboxadd.sh: Starting the VirtualBox Guest Additions.
Failed to set up service vboxadd, please check the log file
/var/log/VBoxGuestAdditions.log for details

Por dentro de /var/log/VBoxGuestAdditions.log :

Created symlink /etc/systemd/system/multi-user.target.wants/vboxadd.service ->  /lib/systemd/system/vboxadd.service.
vboxadd.sh: failed: Look at /var/log/vboxadd-install.log to find out what went wrong.
vboxadd.sh: failed: Look at /var/log/vboxadd-install.log to find out what went wrong.
vboxadd.sh: failed: modprobe vboxguest failed.
Created symlink /etc/systemd/system/multi-user.target.wants/vboxadd-service.service -> /lib/systemd/system/vboxadd-service.service
Created symlink /etc/systemd/system/multi-user.target.wants/vboxadd-x11.service -> /lib/systemd/system/vboxadd-x11.service

E dentro de /var/log/vboxadd-install.log :

/tmp/vbox.0/Makefile.include.header:112: *** ERror: unable to find the sources of your current Linux kernel. Specify KERN_DIR=<directory> and run Make again. Stop.
Creating user for the Guest Additions.
Creating udev rule for the Guest Additions kernel module.

Antes de reiniciar uname -a :

 Linux k 4.9.0-kali3-amd64 #1 SMP Debian 4.9.18-1kali1 (2017-04-04) X86_64 GNU/Linux

Após o reinício uname -a :

Linux k 4.9.0 -kali4-amd64 #1 SMP Debian 4.9.25-1kali1 (2017-05-04) x86_64 GNU/Linux

Alguma idéia do que deu errado?

Saída de apt-cache search linux-headers

    
por Nyxynyx 08.05.2017 / 16:04

2 respostas

1

Para instalar o linux-headers apropriado para sua imagem do kernel, obtenha o linux-headers disponível por meio de:

apt-cache search linux-headers

Em seguida, instale-o:

apt-get install linux-headers-4.9.0-kali4-amd64
    
por 08.05.2017 / 18:00
1

Mesmo eu tive o mesmo problema ... Tente atualizar o arquivo sources.list para o novo repositório

comando

: leafpad etc / apt / sources.list

Adicione esta linha deb link principal contribuição do kali-rolling não-livre

siga os seus passos

Funcionou para mim

    
por 04.06.2017 / 08:09