Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
嗨,我的 LInux 操作系统上的 /usr/src/kernels 文件夹中没有可用的 linux 设备驱动程序库。我可以添加或加载它吗,如果可以,如何操作。我需要它来开发设备驱动程序。
谢谢
您需要内核头文件来编译模块/驱动程序。
在 Fedora 上,您可以使用以下命令
yum install kernel-devel
在 Ubuntu 上,您可以使用以下命令
sudo aptitude install linux-headers-`uname -r`
或者您也可以从 kernel.org 获取整个内核源代码/头文件