1

I want to completely remove Ubuntu from my system. But if I delete the partition, the Grub files will be deleted and that will leave me "Bootloader-less". How can I workaround this?

harisibrahimkv
  • 7,256
  • 11
  • 44
  • 71

3 Answers3

1

You can either boot into Windows (you seem to have an existing installation) and install EasyBCD (free for non-commercial use) to fix the bootloader, or boot with the Windows install disc, which gives you an option to repair the bootloader as well.

prusswan
  • 709
1

Removing Ubuntu and fixing the Windows bootloader

Boot up a live CD or USB and delete your Ubuntu (ext4 and swap) partitions using GParted. You can expand your Windows partitions at this point as well. Then, open up the terminal and use these commands:

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

When you reboot, you should boot straight into your Windows install.

funkeh
  • 384
1

This is the simpliest method I can think of:

  1. Boot to Windows;
  2. Download mbrfix from http://download.cnet.com/MbrFix/3000-2094_4-10485990.html;
  3. Extract the package and copy mbrfix.exe to your favorite directory;
  4. Open a command prompt as an administrator, navigate to your favorite directory (cd);
  5. Enter the command: mbrfix /drive 0 fixmbr and confirm.
  6. Reboot.

Now the Windows bootloader is back. You can mess up the Ubuntu partition at will.

Dawei
  • 81