You are not logged in.
Pages: 1
i've install grub-glx in order to add a splash image to the bootloader, then i restart. and the bootloader was broken.
i've boot with the arch install cd with:
arch root=/dev/sda3
and after i enter my root i removed grub-glx add install grub
then i comment the splash image line at menu.lst and reviewed my menu.list
then i typed:
grub-install /dev/sda
then reboot, still.. not booting..
then i did the same, but i typed grub
and inside grub
i typed:
root (hd0,2)
setup (hd0)
but.. still nothing..
my map partitions ir:
/dev/sda1 - /boot
/dev/sda2 - swap
/dev/sda3 - /
/dev/sda4 - /ftp
/dev/sda6 - /home
Offline
can you elaborate more ,,
does it load the menu,, does it drop you into the (grub)command prompt
does it simply display 'GR0UB' after the post and stop
...
Offline
Try changing "root (hd0,2)" to "root (hd0,0)". /boot is /dev/sda1 so it can't be (hd0,2)
Offline
can you elaborate more ,,
does it load the menu,, does it drop you into the (grub)command prompt
does it simply display 'GR0UB' after the post and stop
...
does not even load the menu..
Try changing "root (hd0,2)" to "root (hd0,0)". /boot is /dev/sda1 so it can't be (hd0,2)
i've typed root (hd0,0) but i when i wrote it wrong here.
does anybody got any ideias?
Offline
You could try installing grub with:
# grub --device-map=/dev/null
grub> device (hd0) /dev/sda
grub> geometry (hd0) C H S
Where C, H and S are your disks Cylinders, Heads and Sectors. Find these from cfdisk /dev/sda .
If you enter the correct numbers etc grub will show you a list of found partitions and you can continue:
grub> root (hd0,0)
grub> setup (hd0)
grub> quit
If there are no errors you should be fine, if you get some please post them here or if they are really long in Pastebin and link.
Hopefully I made no typo here looks fine thou.
Offline
Pages: 1