/usr/src
Common Contents of /usr/src
/usr/srcUsage of /usr/src
/usr/srcKernel Development and Compilation
sudo apt-get install linux-headers-$(uname -r)sudo yum install kernel-develsudo apt-get install linux-sourcecd /usr/src sudo tar -xvf linux-source-<version>.tar.xzcd /usr/src/linux-source-<version> sudo make menuconfig # Configure the kernel options sudo make # Compile the kernel sudo make modules_install sudo make installcd /path/to/module-source make -C /usr/src/linux-headers-$(uname -r) M=$(pwd) modules sudo insmod mymodule.ko
Third-Party Software Compilation
Security Considerations
Summary
Last updated