1

I am a software developer and have only a basic understanding about Linux systems. We are in a migration phase from GCP to AWS and found that the Linux headers are missing while installing Cloud endure agent.

On checking found that the version 4.9.0-11-amd64 is missing in debian repository. Is there any way to install the header version 4.9.0-11-amd64 ?

Any help would be highly appreciated.

UPDATE: This issue is resolved by updating the kernal to the next version

1 Answers1

1

Debian 9 (stretch)?

from this thread's answer

edit (or create) /etc/apt/sources.list.d/snapshot.list

deb http://snapshot.debian.org/archive/debian/20190925T034604Z stretch main
deb http://snapshot.debian.org/archive/debian/20190925T034604Z stretch-updates main
deb http://snapshot.debian.org/archive/debian-security/20191020T221221Z stretch/updates main

note : the 20190925T034604Z is from this answer date : sept 25 '19

then:

apt -o Acquire::Check-Valid-Until=false update
apt install linux-headers-4.9.0-11-amd64

Or you can just install newer kernel

AfajarS
  • 11
  • 3