Error No Such Partition Grub Rescue | Fixes that Work

The “Error No Such Partition Grub Rescue” typically occurs when the GRUB bootloader configuration is corrupted, misconfigured, or the partition it is trying to boot from has been deleted or changed.

Here are effective fixes that work to resolve this issue:

🛠️ 1. Quick Fix Using GRUB Rescue (Manual Boot)

If you just want to boot into your system manually (for now):

🧭 Step-by-step:

At the grub rescue> prompt:

ls

You’ll see something like:

(hd0) (hd0,msdos1) (hd0,msdos2)

Then, try:

ls (hd0,msdos1)/

Keep trying different ones until you see /boot or /grub.

Once you find the right partition:

set root=(hd0,msdos1)
set prefix=(hd0,msdos1)/boot/grub
insmod normal
normal

This will try to boot into GRUB normally. If it works, boot into your system and reinstall GRUB permanently (see below).


💾 2. Fix Permanently Using a Live USB

This is the most reliable fix.

🧰 What you need:

  • A Linux Live USB (Ubuntu, Mint, etc.)

  • Internet connection (optional)

🧭 Steps:

  1. Boot from Live USB

    • Insert the USB, boot into the live session (choose Try Ubuntu, etc.)

  2. Open Terminal

    • Press Ctrl + Alt + T

  3. Find your Linux partition
    Run:

    sudo fdisk -l

    Look for a Linux partition, like /dev/sda2 with type Linux.

  4. Mount your root partition:

    sudo mount /dev/sda2 /mnt
  5. Mount additional directories:

    sudo mount --bind /dev /mnt/dev
    sudo mount --bind /proc /mnt/proc
    sudo mount --bind /sys /mnt/sys
  6. Chroot into your system:

    sudo chroot /mnt
  7. Reinstall GRUB:

    grub-install /dev/sda
    update-grub

    (Replace /dev/sda with your disk, not a partition like /dev/sda1)

  8. Exit and reboot:

    exit
    sudo reboot

Also Read : +1 (650) 265-6786 | Uber drivers or Uber Eats Number


🧹 3. Removing GRUB after deleting Linux (Windows Fix)

If you removed Linux and just want Windows to boot:

🧭 Use Windows Installation Media:

  1. Boot into Windows Install USB/DVD

  2. Click Repair your computer > Troubleshoot > Command Prompt

  3. Run:

    bootrec /fixmbr
    bootrec /fixboot
    bootrec /scanos
    bootrec /rebuildbcd
  4. Reboot. GRUB will be gone, and Windows should boot directly.


🛡️ Final Tips

  • Back up important data before attempting these fixes.

  • Make sure you install GRUB to the disk (like /dev/sda), not a partition (/dev/sda1).

  • If you’re dual-booting, be careful not to overwrite the Windows bootloader.

Be the first to comment

Leave a Reply