I am running kernel 5.10.0-0.bpo.12-amd64 in OMV 5.6.26
I would like to install the kernel headers for the 5.x kernel - https://packages.debian.org/bu…ers-5.10.0-0.bpo.12-amd64
However, when I test the install command it errors with no package found ...
Code
$ apt-get -s install dkms linux-headers-$(uname -r)
Reading package lists... Done
Building dependency tree
Reading state information... Done
E: Unable to locate package linux-headers-5.10.0-0.bpo.12-amd64
E: Couldn't find any package by glob 'linux-headers-5.10.0-0.bpo.12-amd64'
E: Couldn't find any package by regex 'linux-headers-5.10.0-0.bpo.12-amd64'
If I change the install command it will only give me kernel headers for version 4.19 ...
Code
$ apt-get -s install dkms linux-headers-amd64
Inst bzip2 (1.0.6-9.2~deb10u1 Debian:10.12/oldstable [amd64])
Inst xz-utils (5.2.4-1+deb10u1 Debian-Security:10/oldstable [amd64])
Inst binutils-common (2.31.1-16 Debian:10.12/oldstable [amd64])
Inst libbinutils (2.31.1-16 Debian:10.12/oldstable [amd64])
Inst binutils-x86-64-linux-gnu (2.31.1-16 Debian:10.12/oldstable [amd64])
Inst binutils (2.31.1-16 Debian:10.12/oldstable [amd64])
Inst libisl19 (0.20-2 Debian:10.12/oldstable [amd64])
Inst libmpfr6 (4.0.2-1 Debian:10.12/oldstable [amd64])
Inst libmpc3 (1.1.0-1 Debian:10.12/oldstable [amd64])
Inst cpp-8 (8.3.0-6 Debian:10.12/oldstable [amd64])
Inst cpp (4:8.3.0-1 Debian:10.12/oldstable [amd64])
Inst libcc1-0 (8.3.0-6 Debian:10.12/oldstable [amd64])
Inst libgomp1 (8.3.0-6 Debian:10.12/oldstable [amd64])
Inst libitm1 (8.3.0-6 Debian:10.12/oldstable [amd64])
Inst libatomic1 (8.3.0-6 Debian:10.12/oldstable [amd64])
Inst libasan5 (8.3.0-6 Debian:10.12/oldstable [amd64])
Inst liblsan0 (8.3.0-6 Debian:10.12/oldstable [amd64])
Inst libtsan0 (8.3.0-6 Debian:10.12/oldstable [amd64])
Inst libubsan1 (8.3.0-6 Debian:10.12/oldstable [amd64])
Inst libmpx2 (8.3.0-6 Debian:10.12/oldstable [amd64])
Inst libquadmath0 (8.3.0-6 Debian:10.12/oldstable [amd64])
Inst libgcc-8-dev (8.3.0-6 Debian:10.12/oldstable [amd64])
Inst gcc-8 (8.3.0-6 Debian:10.12/oldstable [amd64])
Inst gcc (4:8.3.0-1 Debian:10.12/oldstable [amd64])
Inst libdpkg-perl (1.19.7 Debian:10.12/oldstable [all])
Inst patch (2.7.6-3+deb10u1 Debian:10.12/oldstable, Debian-Security:10/oldstable [amd64])
Inst make (4.2.1-1.2 Debian:10.12/oldstable [amd64])
Inst dpkg-dev (1.19.7 Debian:10.12/oldstable [all])
Inst dkms (2.6.1-4 Debian:10.12/oldstable [all])
Inst linux-compiler-gcc-8-x86 (4.19.235-1 Debian:10.12/oldstable [amd64])
Inst linux-headers-4.19.0-20-common (4.19.235-1 Debian:10.12/oldstable [all])
Inst linux-kbuild-4.19 (4.19.235-1 Debian:10.12/oldstable [amd64])
Inst linux-headers-4.19.0-20-amd64 (4.19.235-1 Debian:10.12/oldstable [amd64])
Inst linux-headers-amd64 (4.19+105+deb10u15 Debian:10.12/oldstable [amd64])
Display More
Here is my package source list ...
Code
$ cat /etc/apt/sources.list
#Stable
deb http://http.us.debian.org/debian/ buster main contrib non-free
#Stable Sources
deb-src http://http.us.debian.org/debian/ buster main contrib non-free
#Security Updates Stable
deb http://security.debian.org/ buster/updates main contrib non-free
How can I get the correct kernel headers package so that I can compile the Wireguard module?
Thanks,
Paully