Reparo de inicialização falhou, o que devo fazer

1

Este é o resultado do pastebin: link

Também recebi esta mensagem do relatório, mas não sei como proceder com isso. Alguém por favor pode explicar isso:

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)

    
por Mr. T 10.02.2016 / 17:22

1 resposta

1

Reinstale o carregador de boot do Ubuntu GRUB.
Inicialize a partir da mídia de instalação do Ubuntu.

Selecione Experimente o Ubuntu sem instalar.
Na área de trabalho, abra um terminal e 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  

Nota: sda = disco | sda1 = partição efi | sda2 = partição do sistema

    
por cl-netbox 10.02.2016 / 18:03