0

I have recently uninstalled Ubuntu 17.10 by formatting the partition and when I rebooted I got a message saying: error: no such partition entering rescue mode... grub rescue > No commands worked So I am wondering, is there a way to uninstall the bootloader so I can boot back into Windows?

1 Answers1

2

Make a live usb with ubuntu 17.10 and insert following commands to remove grub error

sudo apt-get install lilo
sudo lilo -M /dev/sda mbr

It always have worked for me

Amir
  • 591