i had tried this command :-
apt-get update && apt-get upgrade -y
but nothing happened for
apt-get install dkms linux-headers-$(uname -r)
again same error
E: Unable to locate package linux-headers-4.3.0-kali1-amd64
E: Couldn't find any package by glob 'linux-headers-4.3.0-kali1-amd64'
E: Couldn't find any package by regex 'linux-headers-4.3.0-kali1-amd64'
E: Unable to locate package linux-headers-4.3.0-kali1-amd64
E: Couldn't find any package by glob 'linux-headers-4.3.0-kali1-amd64'
E: Couldn't find any package by regex 'linux-headers-4.3.0-kali1-amd64'
가 뜬다면
apt-get update && apt-get upgrade -y
이걸 수행한다
linux-headers-4.3.0-kali1-amd64
doesn't exist (or isn't in any repo your system knows about). Is that how kali linux names its headers packages? Trydpkg -l 'linux-headers*'
and install the appropriate headers package for your running kernel. BTW, thedkms
package should depend on alinux-headers-$arch
package or similar, so you shouldn't need to specify a specific kernel header package. – cas Mar 6 at 7:15