I'm following a simple tutorial on how to create a Linux kernel module, for a class I'm taking, and one of the steps asks me to install the necessary kernel headers using
sudo apt-get install linux-headers-`uname -r`
When I attempt to do this I get the following error
E: Unable to locate package linux-headers-5.5.1-CS369
E: Couldn't find any package by glob 'linux-headers-5.5.1-CS369'
E: Couldn't find any package by regex 'linux-headers-5.5.1-CS369'
(Note: '-CS369' is the local version string we were asked to create for the kernel using menuconfig)
I thought initially that my local version string was making it so I couldn't locate the headers but when I "apt-cache search linux-headers" I don't get any 5.5.1 headers, only 'linux-headers-4.1.5 to linux-headers-5.3.0 . Does anybody know why I'm unable to install the headers I need?
version: Ubuntu 18.04.3
edit: I'm new to all of this and trying to understand how it all works. I apologize if this wasn't an appropriate place to ask this question.