To install glibc you need a system with nothing running on it, since many processes (for example sendmail) always try to use the library and therefore block the files from being replaced. Therefore we need a "naked" system, running nothing except the things we absolutely need. You can achieve this by passing the boot option
init=/bin/bash |
To start the "only-basics" system, reboot your computer and at the LILO prompt enter the kernel image-name you like to load and append
init=/bin/bash |
Grub is a newer bootloader, with enhanced support for different operating systems and and file system types (eg. it supports booting from reiserfs partitions). If you would like to know more go to: http://www.gnu.org/software/grub/, where you will find all the stuff you need.
If you already have Grub installed, you probably use the text-based front-end to select the kernel you prefer to boot. Grub has a nice feature—instead of returning to doing everything by hand, you can simply select your entry and type e, which will bring up an option menu. In this menu you will see the commands Grub executes prior to booting the kernel. Simply select the line saying
kernel="/where/your-kernel-is and-options-are" |
init=/bin/bash |