|
发表于 2004-8-1 22:32:34
|
显示全部楼层
不需要反复拔插硬盘的,
都用grub引导,没问题的。
三个盘都装上(四个),
进入rhas,
修改grub.conf,
类似如下内容:
- default=0
- timeout=10
- splashimage=(sd2,0)/boot/grub/splash.xpm.gz
- title SCO UNIX 5.05
- root (sd0,0)
- chainloader --force +1
- makeactive
- boot
- title Windows 2000 Advanced Server
- map (sd0)(sd1)
- map (sd1)(sd0)
- root (sd1,0)
- chainloader (sd1,0)+1
- makeactive
- boot
- title Redhat Enterprice Linux Advanced Server
- map (sd0)(sd2)
- map (sd2)(sd0)
- root (sd2,0)
- kernel (sd2,0)/boot/vmlinuz-2.4.22 ro root=/sd2/hd1
- initrd (sd2,0)/boot/initrd-2.4.22.img
- boot
复制代码 |
|