I'm trying to update my kernel's headers (Linux 5.4.0)
sudo apt-get install build-essential linux-headers-`uname -r`
but apparently, it wants to install allll kinds of headers for all kinds of kernels... and charges 38gb. (see here)
Going for
sudo apt install linux-headers-$(uname -r)
exits with the error
E: Unable to locate package linux-headers-5.4.0
E: Couldn't find any package by glob 'linux-headers-5.4.0'
Any ideas what I should be doing?
Background on this: I'm trying to install wireguard module but because the headers for 5.4.0 aren't apparent, it installs under a different kernel. I can't default when booting because I'm renting a server.