Eu instalei o Ubuntu GNOME 14.04 para ser dual-boot com o windows 8.1, mas após o reinício, ele só inicializa no windows. [fechadas]

-1

Obrigado pelo seu apoio e ajuda.

    
por Sudo Master 28.05.2014 / 00:15

1 resposta

0

Você pode ter perdido o gerenciador de inicialização do grub e está usando o gerenciador de inicialização do Windows. Você pode obter o gerenciador de inicialização do grub reinstalando o grub.

Execute o seguinte:

Reinstale o grub:

1  boot to the Ubuntu installation disk
2  Run the "Try Ubuntu" option
3) Bring up a terminal (Search for "terminal" Ubuntu launch/search button)

Execute esses comandos (exatamente):

 a) sudo mount /dev/sdaX /mnt  # Make "X" the partition that has Ubuntu installed (i.e. /dev/sda2).
 b) for i in /sys /proc /run /dev; do sudo mount --bind "$i" "/mnt/$i"; done
 c) sudo chroot /mnt
 d) update-grub
 e) if no errors skip this "e" section
     grub-install /dev/sdX (x is the hard drive that has linux installed (i.e. /dev/sda)
     update-grub 5) Reboot the system
    
por L. D. James 28.05.2014 / 00:25