• We’re currently investigating an issue related to the forum theme and styling that is impacting page layout and visual formatting. The problem has been identified, and we are actively working on a resolution. There is no impact to user data or functionality, this is strictly a front-end display issue. We’ll post an update once the fix has been deployed. Thanks for your patience while we get this sorted.

Linux -- Grub error

JinLien

Golden Member

I replaced my PS on the Ubuntu box after it died over night. And now it wouldn't boot. I get the Error 1.5 with screen print number 99 99 99 99 99 99 99 99 99 over and over again.

Should I reinstall over top of the old hdd or try to repair grub?

thanks

 
Go ahead and try to repare grub.

You can do this from a Knoppix cdrom... I like running from a chroot'd environment. Make sure that your using a newer version of knoppix.

sudo su -
or su
to root. You may have to setup a password for root, not sure.

Lets assume that your ubunut partition is found on /dev/hda1


You'll want to run fsck on any partitions you want to mount, just in case there is damage.
fsck /dev/hda1

next mount the grub partition. Knoppix tries to detect and setup mount points automaticly so you can use those.
So it would be something like
mount /mnt/hda1

Then cd into it..
cd /mnt/hda1

Now you can mount the nessicary items.. (going from memory, so I may miss out on something)
mount -t proc proc ./proc
mount -t sysfs sys ./sys
mount -o bind /KNOPPIX/dev ./dev

and then chroot to it...
chroot ./ su -

And then that should be everything. You should be able to mess around with grub and run grub-install and such as if you were running that operating system.

After your finished, make sure to umount everything you've mounted and reboot. Hopefully that gets it.
 
Back
Top