Error trying to enable dahdi dummy

Hello,

Running ASL 1.01 on a raspberry pi 3b here, I was recently reading the instructions for dahdi dummy and hoping it would resolve some audio stuttering issues… I’m getting stuck where it says you do not appear to have the sources for the kernel installed. Having next to zero linux knowledge (I’m a windows admin) I don’t want to break anything further… Is my kernel too new, or what is happening here?

TIA N3FYI

root@simulcast:/#
root@simulcast:/# cd /usr/src/asl-dahdi-linux-2.11.1
root@simulcast:/usr/src/asl-dahdi-linux-2.11.1# make
make -C linux all
make[1]: Entering directory ‘/usr/src/asl-dahdi-linux-2.11.1/linux’
make -C drivers/dahdi/firmware firmware-loaders
make[2]: Entering directory ‘/usr/src/asl-dahdi-linux-2.11.1/linux/drivers/dahdi/firmware’
make[2]: Leaving directory ‘/usr/src/asl-dahdi-linux-2.11.1/linux/drivers/dahdi/firmware’
You do not appear to have the sources for the 4.9.80-v7+ kernel installed.
Makefile:71: recipe for target ‘modules’ failed
make[1]: *** [modules] Error 1
make[1]: Leaving directory ‘/usr/src/asl-dahdi-linux-2.11.1/linux’
Makefile:9: recipe for target ‘all’ failed
make: *** [all] Error 2
root@simulcast:/usr/src/asl-dahdi-linux-2.11.1#

sudo apt-get install linux-headers-uname -r -y

Ken
KE2N

sorry - copy/paste did not work right: there should be single quotes around the

uname -r

and no space character before the first quote
on my system this is
4.9.0-11-amd64

Hello,

Found the correct command by googling off of what you posted, and this is the error I’m getting:

root@simulcast:~# sudo apt install linux-headers-$(uname -r)
Reading package lists… Done
Building dependency tree
Reading state information… Done
E: Unable to locate package linux-headers-4.9.80-v7
E: Couldn’t find any package by glob ‘linux-headers-4.9.80-v7’
E: Couldn’t find any package by regex ‘linux-headers-4.9.80-v7’
root@simulcast:~#

yeah … that is a later version than what I am using. You could try downloading the header files I used and see if that works for you (if you don’t mind trashing your setup should it not work). I am not an expert in this but I base my suggesting on this:

https://packages.debian.org/stretch/linux-headers-amd64

Ken