0

Currently, I'm dual-booting my Windows 8.1 with Ubuntu 15.10

For your information, both of this operating systems are installed on separate partition.

At this moment, I'm planning to refresh/reset my sluggish Windows 8.1. So my question is, will such action wipe my grub loader which may not allow me to access my Ubuntu or the grub loader will still remain intact?

I have googled previously but the situation was mentioning both Windows 8.1 and Ubuntu were installed on the same partition. But what about my case then?

MkLim
  • 1

1 Answers1

1

Reset Windows 8.1 normally, but BEFORE, make sure you have an Ubuntu Live CD/DVD/USB, so if anything happens to GRUB, you can simply boot from the Live media, open a terminal and run:

sudo mount /dev/sdaX /mnt
sudo chroot /mnt
sudo grub-install /dev/sda
sudo update-grub

Replacing 'X' with the correct partition number for your Ubuntu installation.

Eduardo Cola
  • 5,817