Kernel compilation (Debian Jessie)
Kernel compilation (Debian Jessie) http://www.tecmint.com/kernel-compilation-in-debian-linux/ You will need 8-10 GB of free disk space! apt-get install fakeroot kernel-package wget -c https://www.kernel.org/pub/linux/kernel/v3.x/linux-3.14.20.tar.xz tar -xvJf linux-3.14.20.tar.xz cd linux-3.14.20 cp /boot/config-`uname -r` .config apt-get install libncurses5-dev make menuconfig make-kpkg clean export CONCURRENCY_LEVEL=3 fakeroot make-kpkg –append-to-version "-customkernel" –revision "1" –initrd kernel_image kernel_headers cd .. dpkg -i linux-image-3.14.20-customkernel_1_amd64.deb linux-headers-3.14.20-customkernel_1_amd64.deb Install … Read more