Não é possível localizar o pacote linux-headers-4.9.0-kali4-amd64 [closed]

0

Estou tentando instalar os cabeçalhos do linux para o Kali 2017, mas estou recebendo este erro. O que posso fazer sobre isso? Eu pesquisei toda a internet (por favor, não pense que eu não tenho), e não há uma resposta útil: (

~# apt-get install linux-header-$(uname -r)
Reading package lists... Done
Building dependency tree       
Reading state information... Done
E: Unable to locate package linux-header-4.9.0-kali4-amd64
E: Couldn't find any package by glob 'linux-header-4.9.0-kali4-amd64'
E: Couldn't find any package by regex 'linux-header-4.9.0-kali4-amd64'

Meus repositórios são:

    ~# leafpad /etc/apt/sources.list

 # deb cdrom:[Debian GNU/Linux 2017.1 _Kali-rolling_ - Official Snapshot amd64 LIVE/INSTALL Binary 20170416-02:08]/ kali-rolling contrib main non-free

 #deb cdrom:[Debian GNU/Linux 2017.1 _Kali-rolling_ - Official Snapshot amd64 LIVE/INSTALL Binary 20170416-02:08]/ kali-rolling contrib main non-free

 deb http://http.kali.org/kali kali-rolling main contrib non-free

 # For source package access, uncomment the following line
deb-src http://http.kali.org/kali kali-rolling main contrib non-free
    
por Carlos 04.07.2017 / 17:53

1 resposta

1

Você está sentindo falta de um "s", tente

apt-get install linux-headers-$(uname -r)

em vez disso.

    
por 04.07.2017 / 18:04