"Desistiu de esperar pela raiz" erro durante a inicialização

1

Instalei o UBUNTU 14.04 em meu sistema baseado em UEFI no qual o Windows 8 foi pré-instalado recentemente e enfrento o seguinte problema sempre que eu inicializo a partir do menu de inicialização do grub2.

Gave up waiting for root device.  Common problems:
  - Boot args (cat /proc/cmdline)
  - Check rootdelay= (did the system wait long enough?)
  - Check root= (did the system wait for the right device?)
  - Missing modules (cat /proc/modules; ls /dev)
  ALERT!  /dev/disk/by-uuid/XXXXXXXXXXXXX does not exist.  Dropping to a shell!


BusyBox v1.18.5 (Ubuntu 1:1.18.5-1ubuntu4.1) built-in shell (ash)
Enter 'help' for a list of built in commands.

Se eu pressionar exit e, em seguida, aperte enter ele com sucesso sem nenhum problema. Eu tentei reparo de inicialização para consertá-lo e é isso que eu tenho.

Saída de reparo de inicialização

Por favor me ajude como se livrar deste problema.

    
por Tiru Maloth 10.11.2014 / 16:18

1 resposta

0

Também ocorreu o mesmo problema, mas posso resolvê-lo usando o seguinte link

link

Tentativa nº 1

Primeiro, tentei alterar o rootdelay como uma mensagem de erro. Eu abri o arquivo / etc / default / grub Eu encontrei a seguinte linha: GRUB_CMDLINE_LINUX_DEFAULT="respingo silencioso" e mudou para: GRUB_CMDLINE_LINUX_DEFAULT="rootdelay = 90 respingo silencioso" O rootdelay ficou mais longo, mas infelizmente não resolveu o problema no meu caso.

Tentativa nº 2

Eu editei o arquivo / etc / fstab. Eu executei o seguinte comando no terminal: sudo gedit / etc / fstab e editei o arquivo fstab no gedit. No começo, meu arquivo parecia assim:

# /etc/fstab: static file system information.
#
# Use 'blkid' to print the universally unique identifier for a
# device; this may be used with UUID= as a more robust way to name devices
# that works even if disks are added and removed. See fstab(5).
#
# <file system> <mount point>   <type>  <options>       <dump>  <pass>
# / was on /dev/sda1 during installation
UUID=96889309-5f73-4688-8354-e64cd1bb158f /               ext4    errors=remount-ro 0       1
# swap was on /dev/sda5 during installation
UUID=480cc3f7-a39d-4d0f-93d5-49fc8df1a392 none            swap    sw              0       0

Em seguida, eu comentei uma linha e adicionei outra descrevendo o dispositivo de disco / dev / sda1. Agora, meu arquivo tem a seguinte aparência:

# /etc/fstab: static file system information.
#
# Use 'blkid' to print the universally unique identifier for a
# device; this may be used with UUID= as a more robust way to name devices
# that works even if disks are added and removed. See fstab(5).
#
# <file system> <mount point>   <type>  <options>       <dump>  <pass>
# / was on /dev/sda1 during installation
UUID=/dev/sda1  /               ext4    errors=remount-ro 0       1
# UUID=96889309-5f73-4688-8354-e64cd1bb158f /               ext4    errors=remount-ro 0       1
# swap was on /dev/sda5 during installation
UUID=480cc3f7-a39d-4d0f-93d5-49fc8df1a392 none            swap    sw              0       0

O problema ainda existia, então tentei outra tentativa para resolvê-lo.

Tentativa nº 3

Eu abri o terminal e digitei o seguinte comando:

sudo grub-install /dev/sda

e depois digitei outro comando para atualizar o grub:

sudo update-grub

Depois de tudo isso, reiniciei o computador e, finalmente, o erro desapareceu e o problema foi corrigido!

    
por user3441273 28.04.2015 / 15:47