Deu a espera de dispositivo root - caindo para um shell

1

Durante a inicialização no Ubuntu 14.04 LTS, recebo a seguinte mensagem:

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/177ca7ce-7671-49d6-b97e-32494cfe4fdf does not exist.
Dropping to a shell!
BusyBox v1.21.1 (Ubuntu 1:1.21.0-1ubuntu1) built-in shell (ash) 
Enter 'help' for a list of built-in commands

(initramfs) _

Se eu digitar "exit", pressione enter, recebo a tela inicial e posso fazer o login.

Se eu procurar pelo uuid, parece estar lá; então, não sei por que estou ALERTA que não existe.

[by-uuid] ls -l 
[ 4:01PM] total 0 lrwxrwxrwx 1 root root 10 Jun 20 15:28 07107cba-29bb-485a-a3c8-be14411f0f34 -> ../../sda6
lrwxrwxrwx 1 root root 10 Jun 20 15:28 1437-E09A -> ../../sda2 
lrwxrwxrwx 1 root root 10 Jun 20 15:28 177ca7ce-7671-49d6-b97e-32494cfe4fdf -> ../../sda5 
lrwxrwxrwx 1 root root 10 Jun 20 15:28 407836FB7836EF72 -> ../../sda1 
lrwxrwxrwx 1 root root 10 Jun 20 15:28 B2C63A9AC63A5EB3 -> ../../sda4

Eu executei o Boot-repair, que não ajudou em nada para o problema, mas me deu o seguinte link link

Este é um sistema de inicialização dupla com o Windows 10 e o Ubuntu 14.04 LTS

Como resolvo esse problema?

    
por Jonathan Bean 21.06.2017 / 01:17

1 resposta

1

Do terminal:

sudo -H gedit /etc/default/grub

Do gedit, adicione rootdelay=15 entre aspas na linha GRUB_CMDLINE_LINUX="" para tornar

GRUB_CMDLINE_LINUX="rootdelay=15"

Salve e feche.

Do terminal:

sudo update-grub

E reinicie. Repita o processo, adicionando 15 ao rootdelay até que o problema seja resolvido. Para mim, 75 fez o truque.

    
por Jonathan Bean 21.06.2017 / 05:34