当前位置: 技术问答>linux和unix
请教在grub里添加从备份内核启动的设置!
来源: 互联网 发布时间:2015-06-26
本文导语: 我现在手里边只有lilo的设置资料,不知道如果是在grub里边该怎么修改,还望指教! 这是做操作系统试验时,要编译内核,需要备份内核,怕给自己改得稀烂了!! 各位大人指教哈! | 在re...
我现在手里边只有lilo的设置资料,不知道如果是在grub里边该怎么修改,还望指教!
这是做操作系统试验时,要编译内核,需要备份内核,怕给自己改得稀烂了!!
各位大人指教哈!
这是做操作系统试验时,要编译内核,需要备份内核,怕给自己改得稀烂了!!
各位大人指教哈!
|
在redhat 9 中安装后重新编译内核 使用的是2.4.20 经过:
从kernel.org 中下载的.
make menuconfig
make dep
make bzImage
make modules
make modules_install
mkinitrd /boot/initrd-2.4.20.img 2.4.22-wanghao
cp bzImage /boot/vmlinux-2.4.20
编译/boot/grub/grub.conf
#boot=/dev/hda
default=1
timeout=10
splashimage=(hd0,1)/boot/grub/splash.xpm.gz
title Red Hat Linux (2.4.20-
root (hd0,1)
kernel /boot/vmlinuz-2.4.20-8 ro root=LABEL=/ hdc=ide-scsi
initrd /boot/initrd-2.4.20-8.img
title windows2k
rootnoverify (hd0,0)
chainloader +1
#-------------下面的内容是我加入的-----------------#
title Red Hat Linux (2.4.22)
root (hd0,1)
kernel /boot/vmlinux-2.4.20 ro root=LABEL=/ hdc=ide-scsi
initrd /boot/initrd-2.4.20.img
从kernel.org 中下载的.
make menuconfig
make dep
make bzImage
make modules
make modules_install
mkinitrd /boot/initrd-2.4.20.img 2.4.22-wanghao
cp bzImage /boot/vmlinux-2.4.20
编译/boot/grub/grub.conf
#boot=/dev/hda
default=1
timeout=10
splashimage=(hd0,1)/boot/grub/splash.xpm.gz
title Red Hat Linux (2.4.20-
root (hd0,1)
kernel /boot/vmlinuz-2.4.20-8 ro root=LABEL=/ hdc=ide-scsi
initrd /boot/initrd-2.4.20-8.img
title windows2k
rootnoverify (hd0,0)
chainloader +1
#-------------下面的内容是我加入的-----------------#
title Red Hat Linux (2.4.22)
root (hd0,1)
kernel /boot/vmlinux-2.4.20 ro root=LABEL=/ hdc=ide-scsi
initrd /boot/initrd-2.4.20.img