|
|
发表于 2005-1-25 17:17:10
|
显示全部楼层
不一定非要划分一个boot分区的。有 / 和swap就行 ,swap 可以公用
- # This is a sample menu.lst file. You should make some changes to it.
- # Added items for installing GRUB [ which is on your DOS drive C: ] to MBR
- color black/cyan yellow/cyan
- timeout 7
- default 3
- splashimage=(hd0,4)/boot/grub/splash.xpm.gz
- title Debian GNU/Linux, kernel 2.6.8-1-k7
- root (hd0,5)
- kernel /boot/vmlinuz-2.6.8-1-k7 root=/dev/hda6 ro vga=771
- initrd /boot/initrd.img-2.6.8-1-k7
- savedefault
- boot
- title Gentoo Linux
- root (hd0,4)
- kernel /boot/vmlinuz-2.6.9-gentoo-r10 root=/dev/hda5
- # initrd /initrd-2.6.9-1.667.img
- title Fedora Core (2.6.9-1.681)
- root (hd0,6)
- kernel /boot/vmlinuz-2.6.9-1.681_FC3 ro root=/dev/hda7 quiet
- initrd /boot/initrd-2.6.9-1.681_FC3.img
- title FreeBSD
- rootnoverify (hd0,2)
- chainloader +1
- title Windows Server 2003
- rootnoverify (hd0,0)
- chainloader +1
- title Debian install
- kernel (hd0,8)/os/debian/vmlinuz root=/dev/ram ramdisk_size=256000 devfs=mount,dall
- initrd (hd0,8)/os/debian/initrd.gz
- boot
- title Fedora install
- kernel (hd0,7)/fedora/vmlinuz
- initrd (hd0,7)/fedora/initrd.img
- boot
- title Linux rescue
- map --read-only (hd0,7)/linux/ramf-120.img (fd0)
- chainloader (hd0,7)/linux/ramf-120.img
- rootnoverify (fd0)
- boot
- title DOS
- map --read-only (hd0,7)/dos/msdos710.img (fd0)
- chainloader (hd0,7)/dos/msdos710.img
- rootnoverify (fd0)
- boot
复制代码 |
|