1

This is the pastebin result: https://paste.ubuntu.com/15009157/

I also got this message from the report but I don't know how to proceed with this. Can someone please explain this:

The boot files of [The OS now in use - Ubuntu 15.10] are far from the start of the disk. Your BIOS may not detect them. You may want to retry after creating a /boot partition (EXT4, >200MB, start of the disk). This can be performed via tools such as gParted. Then select this partition via the [Separate /boot partition:] option of [Boot Repair]. (https://help.ubuntu.com/community/BootPartition)

Mr. T
  • 153

1 Answers1

1

Reinstall Ubuntu GRUB boot loader.
Boot from the Ubuntu installation media.

Select Try Ubuntu without installing.
On desktop open a terminal and execute :

sudo mount /dev/sda2 /mnt
sudo mount /dev/sda1 /mnt/boot/efi
for i in /dev /dev/pts /proc /sys /run; do sudo mount -B $i /mnt$i; done
sudo chroot /mnt
grub-install /dev/sda
update-grub  

Note : sda = disk | sda1 = efi partition | sda2 = system partition

cl-netbox
  • 31,491