快捷搜索:   nginx

CentOS 编译系统内核

# wget
# tar zxvf linux-2.6.27.tar.gz -C /usr/src
# cd /usr/src/linux-2.6.27
# make menuconfig

现在出现一个字符界面,主要是去掉诸如wireless等服务器根本用不着的功能。
弄完了,保存,退出。

make menuconfig; 在此出现问题,

*** Unable to find the ncurses libraries or the
*** required header files.
*** 'make menuconfig' requires the ncurses libraries.
***
*** Install ncurses (ncurses-devel) and try again.
***
make[1] : *** [scripts/kconfig/dochecklxdialog] Error 1
make: *** [menuconfig] Error 2   安装ncurses 和ncurses-devel  问题解除

 # make (可能要很长时间)
# make modules_install
# cp arch/i386/boot/bzImage /boot/vmlinuz-2.6.27-yourname (注意:目录i386是根据你的类型, 如果是64位系统, 那就很可能是x86_64)
# cp System.map /boot/System.map-2.6.27-yourname
# mkinitrd /boot/initrd-2.6.27-yourname.img   2.6.27

GRUB选择刚刚编译的内核,

# vi /etc/grub.conf

<blockquote>
title CentOS (2.6.27-yourname)
root (hd0,0)
kernel /vmlinuz-2.6.27-yourname ro root=LABEL=/
initrd /initrd-2.6.27-yourname.img
title CentOS (2.6.18-92.1.13.el5)
root (hd0,0)
kernel /vmlinuz-2.6.18-92.1.13.el5 ro root=LABEL=/
initrd /initrd-2.6.18-92.1.13.el5.img</blockquote>

# reboot

顶(0)
踩(0)

您可能还会对下面的文章感兴趣:

最新评论