121

i want to write a device driver but not able to find the header file can someone please help me find them?Also if someone can point out some important site links that would be really appreciated

Oli
  • 293,335
coder
  • 3,591

5 Answers5

144

You should be able to install the kernel header files for the currently running kernel by running the following in a terminal:

sudo apt-get install linux-headers-$(uname -r)

In general, the kernel header packages are named linux-header-* where "*" indicates the version & variant (generic, server, etc.).

JanC
  • 19,422
112

You can just type:

sudo apt-get install linux-headers-generic

if you are on a Desktop installation. The apt-get will solve the dependencies and install the correct version of kernel headers.

  • 19
    and Ubuntu will also update them when a new version comes out – Csq May 05 '13 at 07:38
  • 4
    Or linux-headers-virtual if your running a VM in an Openstack instance... – BSchlinker Sep 18 '13 at 06:41
  • 1
    In Debian Wheezy I get the error message "Package linux-headers-generic is not available, but is referred to by another package. [...] E: Package 'linux-headers-generic' has no installation candidate" – IQAndreas Apr 27 '15 at 03:10
  • 4
    @IQAndreas the linux-headers-generic package is ubuntu specific. On Debian you should use sudo apt-get install linux-headers-$(uname -r) – Alexandre Teles Apr 28 '15 at 16:00
  • I have linux-headers-generic installed on 18.04 but still don't have the headers for the newest and current kernel version. Maybe it's just a bug with this version, I've compiled kernel modules in earlier versions so I must've had the correct headers back then. – user1768761 Jan 19 '23 at 10:11
20

Case of Obsolete kernel package

This should cover another problem when: the currently running kernel is obsolete, meaning it's not in the repository anymore neither its headers. So the best thing to do is to update the kernel to last version in the repository.

linux-generic is a meta package to keep current version of the kernel & its headers:

sudo apt-get update
sudo apt-get install linux-generic

Note: Depending on your Ubuntu edition, See if you need linux-lowlatency (Ubuntu Studio), linux-signed-generic or linux-virtual.

user.dz
  • 48,105
1

Or if you have aptitude installed: sudo aptitude install linux-headers-$(uname -r)

user1527227
  • 425
  • 3
  • 6
  • 15
-1

these commands should work:

sudo apt-get dist-upgrade -y
systemctl reboot
sudo apt-get install linux-headers-$(uname -r)
sudo apt-get upgrade linux-headers-$(uname -r)

for better instruction checkout this video

  • 1
    He is just asking how to install headers, why would you recommend upgrading the distribution? Do not follow these steps if you just want to download the headers. – AFP_555 Nov 25 '20 at 16:58