Last active
May 20, 2018 07:44
-
-
Save garronej/551aa780f6b4f11788b791c6c578a0ed to your computer and use it in GitHub Desktop.
installing linux header for raspbian
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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]) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
https://github.com/emmercm/rpi-headers