4

I've installed Ubuntu on a secondary HDD for dual-booting with Windows 10 on my primary SSD.

I've now decided that I want to make the switch completely and have Ubuntu booting on my SSD (and removing Windows 10).

How might I go about doing this?

7ochem
  • 191

1 Answers1

4

Install gparted

sudo apt-get install gparted

and first delete the Windows partition and then extend Ubuntu's partition or use LVM(Logical Volume management) in order to create logical volumes.

Make sure after that you run boot-repair

sudo add-apt-repository ppa:yannubuntu/boot-repair
sudo apt-get update
sudo apt-get install -y boot-repair && boot-repair
Ashu
  • 4,004