1

I am using Lubuntu 13.10 which has been working fine for about a month, but suddenly my desktop froze and since then I get the following error at boot which doesn't allow me to use it:

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/17d1276b-5f5d-4ca9-8999-efd0c73f5177 does not exist.   
Dropping to a shell! 

BusyBox v.1.20.2 (Ubuntu 1:1.20.0-8.1ubuntu1) built-in shell (ash)   
Enter 'help' for list of built-in commands.  

(initramfs)

I am getting the following error also:

error: unknown filesystem`
Entering rescue mode`
grub rescue>
karel
  • 114,770
user246599
  • 13
  • 1
  • 4

1 Answers1

1

It is trying to mount a device. If 'when booting/during GRUB action' you press "s" this will skip the mount process, and no errors will appear. You will need to edit the fstab file referencing the UUID number.

Example:

sudo gedit /etc/fstab
UUID=sda2

Remove the line completely, Save and close. Then reboot.

blade19899
  • 26,704