0

I want to uninstall Ubuntu. Here is a screen shot of my partitions:The screenshot

Please help me find out which partitions to delete. I installed Ubuntu in legacy and windows 10 is in UEFI.

  • I'd say /dev/sda9 /dev/sda/10 but don't forget to restore your MBR otherwise you won't be able to get into Windows from boot – codaamok Mar 03 '16 at 08:39
  • What is MBR? How to restore it? And pls see that injury and grin are installed in legacy while my windows 10 is in UEFI. – Rhythm Goel Mar 18 '16 at 08:15
  • Two questions that are easily Google-able, much like your question everything you've written is a duplicate elsewhere – codaamok Mar 18 '16 at 15:08

1 Answers1

2

Delete /dev/sda9 and /dev/sda10. I'm not sure if this will delete your bootloader as your setup is very confusing. So to be safe, boot windows 10 and restore your windows bootloader like this:

bootsect /nt60 drive_letter: /mbr

Drive letter of course has to be replaced with the drive letter where your operating system resides, so probably the command will look like this for you:

bootsect /nt60 C: /mbr

Then you can boot any partitioning tool of your choice and safely delete the ubuntu partitions.

Gasp0de
  • 464