自己编译kernel的大概步骤
cd /usr
mkdir src
cd src
wget http://www.kernel.org/pub/linux/kernel/v2.6/linux-2.6.17.7.tar.gz
tar -zxvf linux-2.6.17.7.tar.gz
rm -f linux
ln -s linux-2.6.17.7 linux
cd linux
make menuconfig
make
make install
make modules_install
reboot
