Hi,
Thanks for your detailed reply on my query.Unfortunately I ddidn't create the boot floppy during the installtion.
Can I have the details how to go ahead to get activate the Linux?
thanks & Rgds
babu
Quote:
If you created a boot disk when you first set Linux up you can simply use that to boot your system and then restore your boot loader by logging in as root and, at a terminal, typing lilo to restore LILO. If you use GRUB though it's a little more complicated as you need to know the hard drive and partition numbers of your boot partition (the one with the /boot directory on it. It's become quite common to mount this in its own partition these days even though this isn't strictly necessary). Once you have that info, you can simply start the GRUB shell by typing grub at the prompt and then typing the following (assuming GRUB is installed into the MBR):
Code:
root (hdx,y)setup (hdx)
where x represents the hard drive number (GRUB numbers hard drives from 0 starting at the first HDD in the system. If you only have one drive though, it'll always be 0) and y represents the number of the boot partition (like hard drives, GRUB numbers the partitions starting from 0 and employs the same numbering scheme that Linux does so 0-3 represent your 4 primary partitions and 5 upward represent logical drives. A quick rule of thumb is the GRUB number will be the Linux number subtract one so if your boot partition is /dev/hda5, it'll be (hd0,4) in GRUB).
edit: I forgot to mention that if you don't have a boot disk for your system you're going to need to find an alternative way to get into your system in order to run the requisite lilo or grub commands to restore the bootloader. For this, you're going to need to get your hands on a "Live" type distribution such as Knoppix that'll let you mount your existing Linux partitions, chroot into your installed Linux environment and restore the bootloader.