Skip to content

Instantly share code, notes, and snippets.

@garronej
Last active May 20, 2018 07:44
installing linux header for raspbian
sudo apt-get install raspberrypi-kernel-headers
VOILA! nothing else to do!
if it does not work:
https://www.niksula.hut.fi/~mhiienka/Rpi/linux-headers-rpi/
find the headers for the distribution: uname -r
sudo su
cd /usr/src
wget https://[...].deb
apt-get install dkms
apt-get install bc
dpkg -i linux-headers*.deb
Ignore errors just make sure that:
it create the link "build" @ /lib/modules/$(uname -r) that point to /usr/src/linux-headers-$(uname -r)
See what package are installed:
(dpkg --get-selections | grep -v deinstall | grep [nom du package])
@garronej
Copy link
Author

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment