[Ubuntu 10.04] How to compile a kernel on Ubuntu 10.04
2011. 9. 19.
First stepsInstall the required tools and packages.Open a terminal and type the following,sudo apt-get install fakeroot kernel-wedge build-essential makedumpfile kernel-package libncurses5 libncurses5-devThen run the following command,sudo apt-get build-dep --no-install-recommends linux-image-$(uname -r)And finally type,mkdir ~/srccd ~/srcapt-get source linux-image-$(uname -r)cd linux-2.6.32At t..