On Wed, 02 Aug 2000, [EMAIL PROTECTED] pushed some small plastic letters in this
order:
> Hello,
>
> I just changed my main HD drive and had to play a bit with drakboot to get it to
> work again after copying everything on the new disk.
> Now everything is fine but grub disappeared and I'm back with lilo ?
> Is there any way to use grub again (without reinstalling everything of course ?)
>
> This must be classical and grub is not documented at all...neither drakboot.
>
> Anyone who can help ?
>
> TIA
Try looking in the gnu info pages for grub, I don't think there's a man page
for it: `info grub`. You'll need the section labelled installation/hard-drives.
IIRC it involves invoking the grub shell telling it where your grub boot
info is and then setting up your drive like so:
grub> find /boot/grub/stage1
(hd0,5)
grub> root (hd0,5)
grub> setup (hd0)
...some installation msgs here... then done...
In the previous example the argument to the root command is the output to find
command, it will be different on your system. For this case it was partition 5
(/dev/hda6) as grub starts numbering partitions from zero. /dev/hda is
represented by the hd0 also starting from zero.
Tony