PDA

View Full Version : [SOLVED] How to remove a new Installation and leave previous one?



Arius123
July 19th, 2014, 04:40 PM
I have now in grub:

(a) Ubuntu (New, which is responsible for grub)
(b) Ubunutu (Previous installation)
(c) Windows 8

How i can remove (a) from grub AND ALSO delete partition where it has been installed?

Thank you!

Vladlenin5000
July 19th, 2014, 04:59 PM
Hi, welcome.

Assuming there are no other problems it should be as easy as booting (b), then use a tool like GParted to remove the partition where (a) is installed and finish with an update to GRUB:
sudo update-grub

grahammechanical
July 19th, 2014, 05:14 PM
You may also need to run


sudo grub-install /dev/sda

Because the new install would have installed its Grub into sda. You are at the moment loading from the Grub of the new installation (a). These two commands run from the previous installation (b) will together change which Grub is controlling the boot menu.

Regards.

Arius123
July 20th, 2014, 01:54 AM
Thank you.
(First, have switched grub, and then the rest... )