|
发表于 2006-1-8 14:22:50
|
显示全部楼层
先装那个都没问题,只要最后安装的引导程序设置好就没问题,我也是两个硬盘,我用grub引导,下面是我的分区,和men.lst,给你参考
- hda 80G
- /hda1 2G,DOS622,windows98
- /hda2 5G 空着,试验用,留着装LFS和FreeBSD,因为FreeBSD要占用主分区
- /hda5 128M,debian /boot 分区
- /hda6 512M,debian swap 分区
- /hda7 剩下空间,debian / 分区
- hdb 120G,全部windows2000
- /hdb1 20G
- /hdb5 30G
- /hdb6 30G
- /hdb7 40G
复制代码
menu.lst
- splashimage=(hd0,4)/grub/splash.xpm.gz
- default 0
- timeout 5
- title Windows 2000
- map (hd1) (hd0)
- root (hd1,0)
- makeactive
- chainloader +1
- title Windows 98
- root (hd0,0)
- makeactive
- chainloader +1
- title Debian GNU/Linux, kernel 2.6.15-1-686
- root (hd0,4)
- kernel /vmlinuz-2.6.15-1-686 root=/dev/hda7 ro vga=792
- initrd /initrd.img-2.6.15-1-686
- savedefault
- boot
- title Debian GNU/Linux, kernel 2.4.27-2-686
- root (hd0,4)
- kernel /vmlinuz-2.4.27-2-686 root=/dev/hda7 ro vga=792
- initrd /initrd.img-2.4.27-2-686
- savedefault
- boot
- title Debian GNU/Linux, kernel 2.4.27-2-686 (recovery mode)
- root (hd0,4)
- kernel /vmlinuz-2.4.27-2-686 root=/dev/hda7 ro single vga=792
- initrd /initrd.img-2.4.27-2-686
- savedefault
- boot
复制代码
注意,因为我的 windows2000 在第二只硬盘,所以要先用map命令
如果装完98,再装debian,没有问题,如果装完debian,再装98,会覆盖安装到MBR 的 grub,只要用引导盘引导到debian重新安装 grub 就可以了 |
|