====== Compiling the Linux Kernel ======
Get a kernel:
$ wget http://kernel.org/pub/linux/kernel/v2.6/linux-2.6.30.tar.bz2
Extract:
$ tar xjf linux-2.6.30.tar.bz2
$ cd linux-2.6.30
Make a ''.config'' file. 99% of the time the default will be fine, so we'll just run the plain menu config and exit to save the defaults. (You might be tempted to do "''make defconfig''", which claims to do the same thing, but it doesn't.)
$ make menuconfig