You are not logged in.
Pages: 1
So, I've reinstalled Windows, and obviously GRUB(Legacy) is gone.
How could I restore it? Would it work using an Arch live USB? By skipping all steps until I get to the GRUB installation.
Offline
yes
There's no such thing as a stupid question, but there sure are a lot of inquisitive idiots !
Offline
I guess I'll do it. Thanks.
Offline
This will also work (from a LiveCD):
cd /mnt
mount /dev/sdaX .
for i in /proc /sys /dev; do mount -B $i .$i; done
chroot .
grub-install /dev/sda #Don't use sdaX. You want to install to the MBR.
You should also set the boot flag on whatever partition GRUB is installed. Use either gparted or cfdisk, depending on whichever the LiveCD comes with.
And don't forget to mark it as solved.
I have made a personal commitment not to reply in topics that start with a lowercase letter. Proper grammar and punctuation is a sign of respect, and if you do not show any, you will NOT receive any help (at least not from me).
Offline
Pages: 1