Erro ao inicializar do live usb linux: falha ao ler o setor 0x0 de 'cd0'

1

Eu criei um armazenamento persistente USB com Ubuntu e usei por alguns dias e funcionou perfeitamente.

Agora criei outro USB no Ubuntu para o meu amigo no meu PC para que ele possa fazer o mesmo no PC.

O seu USB funciona bem, mas agora não consigo arrancar a partir do meu USB original no meu PC. Eu só posso arrancar a partir do USB do meu amigo. Quando eu inicializo do meu USB, grub me dá um erro: erro: falha ao ler o setor 0x0 de 'cd0' .

Eu sempre posso usá-lo em um PC diferente, mas preciso trabalhar no meu PC. Alguma sugestão?

Parece que o grub substituiu a minha configuração anterior do carregador de inicialização do ubuntu por uma nova. Como eu recupero o anterior que estava trabalhando com o meu USB?

    
por Bhavik 04.04.2017 / 13:11

1 resposta

1

Use o Ubuntu USB do seu amigo para fazer o chroot no seu Ubuntu USB ao vivo e reparar seu bootloader GRUB executando update-grub .

  1. Boot from the other working Ubuntu live USB.
  2. 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 own original Ubuntu live USB!
  3. Mount your partition:

    sudo mount /dev/sda2 /mnt  # Replace sda2 with your partition number
    
  4. Bind mount some other necessary stuff:

    for i in /sys /proc /run /dev; do sudo mount --bind "$i" "/mnt$i"; done
    
  5. If Ubuntu is installed in EFI mode (see this answer if you're unsure), use GParted to find your EFI partition. It will have a label of EFI. Mount this partition, replacing sdXY with the actual partition number for your system:

    sudo mount /dev/sdXY /mnt/boot/efi
    
  6. chroot into your Ubuntu install:

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

    update-grub
    

    If you get errors or if going up to step 7 didn't fix your problem, go to step 8. (Otherwise, it is optional.)

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

    grub-install /dev/sda
    update-grub # In order to find and add windows to grub menu.
    
  9. If everything worked without errors, then you're all set:

    exit
    sudo reboot 
    

Fonte: link

    
por 13.04.2017 / 14:22