|
发表于 2006-2-20 19:54:55
|
显示全部楼层
cd /usr/src/linux
make menuconfig
自己按自己的硬件选
make modules (如果你选择编译模块的话)
make modules_install
cp arch/i386/boot/bzImage /boot (姑且认为你用的是32位)
vi /etc/lilo.conf
在其中加上几句:
# New compiled kernel
image=/boot/bzImage
root=/dev/hda1 (如果你是装在hda1的话)
label=bzImage
read-only
存盘
运行 lilo 命令,如果报错就再检查一下lilo.conf |
|