0

I tried installing windows 10 enterprise over Ubuntu 14. the installation process went fine but after restarting my laptop now it just shows

GNU GRUB version 2.02-beta2-9ubuntu1 minimal BASH-like line editing is supported
Zanna
  • 70,465

1 Answers1

1

Boot to a LiveUSB and fsck on the root partition of your Ubuntu installation.

You can check the partitions by examining the /etc/fstab file.

$ sudo blkid

Run this command, replacing sdXY with the partition found from the command above.

$ sudo fsck -y /dev/sdXY

After the check performs without errors, reboot as normal.

The above will ensure the integrity of your OS partition. Additionally, and very common, you may have to reinstall Grub using the steps provided in this answer: Installing Windows 10 on partition removed Ubuntu option

L. D. James
  • 25,036