Como mudar o Ubuntu pré-instalado do Windows 8?

0

Eu tenho ubantu pré-instalado no meu pc e eu instalei o Windows 8 depois. Agora eu quero usar o ubantu mas não sei como abri-lo. Por favor ajude!

    
por rohit singh 18.07.2015 / 09:51

1 resposta

-2

Você pode ter que dar mais detalhes sobre exatamente como você é incapaz de acessar o seu Ubuntu. Um dos problemas pode estar no seu grub loader. Um menu grub basicamente lista todos os sistemas operacionais disponíveis instalados em seu computador. Você pode ter que instalar um grub personalizado para poder obter acesso ao menu do grub.

"Quando você instala o Windows, o Windows assume que é o único sistema operacional (SO) na máquina, ou pelo menos não conta para o Linux. Por isso, ele substitui o GRUB por seu próprio gerenciador de inicialização. O que você precisa fazer é substituir o carregador de inicialização do Windows com GRUB.Eu vi várias instruções para substituir o GRUB por mexer com comandos GRUB ou algo assim, mas para mim a maneira mais fácil é simplesmente chroot em sua instalação e executar o update-grub. chroot é ótimo porque Ele permite que você trabalhe na sua instalação real, em vez de tentar redirecionar as coisas aqui e ali. É realmente limpo.

Veja como:

Boot from the live CD or live USB, in "Try Ubuntu" mode.
Determine the partition number of your main partition. GParted (which should already be installed, by default, on the live session) can help you here. I'm going to assume in this answer that it's /dev/sda2, but make sure you use the correct partition number for your system!

Mount your partition:

sudo mount /dev/sda2 /mnt  #Replace sda2 with your partition number

Bind mount some other necessary stuff:

for i in /sys /proc /run /dev; do sudo mount --bind "$i" "/mnt$i"; done

chroot into your Ubuntu install:

sudo chroot /mnt

At this point, you're in your install, not the live session, and running as root. Update grub:

update-grub

If you get errors, go to step 7. (Otherwise, it is optional.)

Depending on your situation, you might have to reinstall grub:

grub-install /dev/sda
update-grub # I'm not sure if this is necessary, but it doesn't hurt.

If everything worked without errors, then you're all set:

exit
sudo reboot

At this point, you should be able to boot normally.

Se você não conseguir inicializar normalmente e não fizer a etapa 7 porque não houve mensagens de erro, tente novamente com a etapa 7.

Sometimes giving GRUB2 the correct configuration for your partitions is not enough, and you must actually install it (or reinstall it) to the Master Boot Record, which step 7 does. Experience helping users in chat has shown that step 7 is sometimes necessary even when no error messages are shown."

-Esta não é a minha resposta.

    
por Dhakal Abbal 18.07.2015 / 11:34