14

I have recently installed dual-boot with Windows 10 and Ubuntu 16.04 LTS. After messing around with Ubuntu, I decided it was time for a clean re-install.

I booted back into Windows 10 and deleted the Ubuntu partition (two of them) and they were converted back to free space.

Upon reboot, I got into a black screen with Grub > command line. (Note: not Grub rescue). Not knowing what to do, I did a force shut down.

Next, I attempted to boot my machine again, this time pressing F2 to get into BIOS. I was lucky that I could change the Boot Order to get Windows Boot Manager back on top of the list, instead of Ubuntu. I successfully booted back to Windows 10.

Now, this is where my issue differs from the rest (I did some research on similar topics before posting). Now, I can boot back into Windows 10.

My goal is to remove Ubuntu and reinstall it for a clean-slate. I have already deleted the Ubuntu partitions. However, now the Ubuntu selection remains lingering in my Boot Menu. Hence, how can I remove it?

K7AAY
  • 17,705
Keith OYS
  • 421

2 Answers2

18

I've successfully executed this solution below to my problem:

  1. In BIOS, change Boot Sequence to allow booting from USB (containing Ubuntu)

  2. In GRUB, select Try Ubuntu without installing

  3. Once in Ubuntu, press Ctrl+Alt+T to bring up Terminal

  4. Type sudo efibootmgr to list all the entries in Boot Menu. If the command doesn't exist, then do sudo apt install efibootmgr.

  5. Find Ubuntu in the menu and note down its boot number e.g. 1 in Boot0001

  6. Type sudo efibootmgr -b <boot number> -B to delete the entry from Boot Menu. E.g. sudo efibootmgr -b 1 -B

-b: modify boot number -B: delete boot number

There after, all I did was to switch Windows Boot Manager back up to the top of the Boot Menu > go back to Windows 10 > Create and format hard disk partitions and extended my Windows C:\ Drive partition to merge with the free space where it came from my deleted Ubuntu drive.


Reference (with images): How to remove Ubuntu from Dual Boot

John Strood
  • 294
  • 4
  • 16
Keith OYS
  • 421
15

Open the Command Prompt (Admin) ( shown in the options image above ). Follow these commands-> Note the line after ‘#’ is just to explain the command

> diskpart  
> list disk       # select the primary disk
> select disk 0   # disk 0 is 
> list partition   # a list of partition is opened

Note-> Check which is the system partition (example partition 1 is system partition)

> select partition 1  #select the system partition
> assign letter=x     #disk is now mounted in your explorer verify with (windows+E)
>exit    #exit from diskpart
>x:      # this would select this newly mounted disk x:
> dir  # displays content
> cd efi
>dir   #displays content

Note-> You can now see the OS check your Linux OS

>rd ubuntu /S    #if Linux os is Ubuntu
>y               #to confirm delete

You may check out my article UNINSTALL UBUNTU COMPLETELY