Wednesday 26 February 2020

Grub Rescue from boot (for Linux)

This is temporary Solution

First of all list all the partitions using ls command
then search for the partition in which Linux is installed
example

ls (hd0,msdos6)

list until you get result ext2
then set as root that partition

set root=((hd0,msdos6))

then set the prefix to grub

set prefix=(hd0,msdos6)/boot/grub

then write

insmod normal

then write normal to start normally

normal

your OS will boot and you can do your work

If you want to set grub permanent then check out my post "Grub rescue in a minute "


set of commands by numbering

1. set root=((hd0,msdos6))
2. set prefix=(hd0,msdos6)/boot/grub
3. insmod normal
4. normal

No comments:

Post a Comment