torthtyo 发表于 2006-6-25 19:15:15

请教 如何支持 多个linux系统的起动

最早安装了magic linux 后来安装了一个suse10.1, 发现安装suse10.1之后,只能起动windows和suse ,magic没了 ,又重装了一次magic,发现又只能起动magic和winodws。有没有办法同时起动多个linux系统。谢谢!

npcomet 发表于 2006-6-25 19:36:31

呵呵
编辑一下
/boot/grub/menu.lst
加入mgc或者suse10.1的启动项

KDE 发表于 2006-6-25 19:50:36

只要安装时没有相互覆盖分区,那么只要修改/boot/grub/grub.conf 就行,添加原来的配置即可:
例如我的配置:

title MagicLinux
        root (hd0,6)
        kernel /boot/vmlinuz-2.6.15.3ro root=/dev/hda7 vga=791 splash=silent
        initrd /boot/initrd-2.6.15.3.img
title MagicLinux (Graphics Mode)
        root (hd0,6)
        kernel /boot/vmlinuz-2.6.15.3 init 5 ro root=/dev/hda7 vga=791 splash=silent
        initrd /boot/initrd-2.6.15.3.img
title MagicLinux (Console Mode)
        root (hd0,6)
        kernel /boot/vmlinuz-2.6.15.3 init 3 ro root=/dev/hda7 vga=791 splash=silent
        initrd /boot/initrd-2.6.15.3.img
title MagicLinux (Single Mode)
        root (hd0,6)
        kernel /boot/vmlinuz-2.6.15.3 init 1 ro root=/dev/hda7 vga=791 splash=silent
        initrd /boot/initrd-2.6.15.3.img

这里 (hd0,6) 代表内核位于第 1 个硬盘 (0) 的第 7 个分区 (6)。
页: [1]
查看完整版本: 请教 如何支持 多个linux系统的起动