|
发表于 2005-7-30 13:20:49
|
显示全部楼层
For LILO, you will need to configure two essential things in /etc/lilo.conf:
*
to load the initrd.gz installer at boot time;
*
have the vmlinuz kernel use a RAM disk as its root partition.
Here is a /etc/lilo.conf example:
image=/boot/newinstall/vmlinuz
label=newinstall
initrd=/boot/newinstall/initrd.gz
root=/dev/ram0
append="devfs=mount,dall ramdisk_size=12000"
For more details, refer to the initrd(4) and lilo.conf(5) man pages. Now run lilo and reboot. |
|