I have a serious problem with Ubuntu 14.04. When I start my computer it shows the following errors:
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/xxxxxxxxx does not exist.
Dropping to a shell!
BusyBox v.1.13.3 (Ubuntu 1:1.13.3-1ubuntu11) built-in shell (ash)
Enter 'help' for list of built-in commands.
(initramfs)
I got this error earlier but it fixed automatically, but this it keeps saying this errors. Please please help me.
Update from Comments below
sudo blkid
/dev/sda1 :Label="backu" uuid="c4406f0a406fo312" Type = "ntfs"
/dev/sda3 : Label="linux"c6e7b2c6-5e8f-4a2d-b666-9489ef7c7c8f" Type = "ext4"
/dev/sda5: uuid="6e0361c9-bbb6-4395-a75e-ef8d645245d0" Type = "ext4"
/dev/sda6: uuid="740f28da-723a-40d3-995b-3d5dc0d30120" Type = "ext4"
/dev/sda7: uuid="30c1ba3b-dd3e-4ec2-989b-2e3a3d0d30d8067" Type = "ext4"
/dev/sda8: uuid="06145b6-0538-4a4b-b424-a5f7a732e8e1" Type = "swap"
blkid
from command line (from a live dvd if needed) and check the UUID's against what /etc/fstab has.Or post both results into your question please. – Rinzwind May 05 '14 at 12:44sudo blkid
command on it. Finally post it's output on your question. – Avinash Raj May 05 '14 at 12:57/dev/sda5: uuid="6e0361c9-bbb6-4395-a75e-ef8d645245d0" Type = "ext4" /dev/sda6: uuid="740f28da-723a-40d3-995b-3d5dc0d30120" Type = "ext4" /dev/sda7: uuid="30c1ba3b-dd3e-4ec2-989b-2e3a3d0d30d8067" Type = "ext4" /dev/sda8: uuid="06145b6-0538-4a4b-b424-a5f7a732e8e1" Type = "swap"
please help me guyz im in so much trouble ..
– user258548 May 06 '14 at 03:00dpkg -l | grep linux-image-extra
(also works as regular user). What do you see in first column? Usually you'd seeii
(very good) orrc
(not good). Becauserc
means the extra modules are not correctly installed (or something went wrong during their installation). Not all people need this, but imagine you're booting off a disk at an external hardware controller (PCI/PCIe...), this will normally not be supported by the "basic" kernel image but require additional modules (or call them drivers) to work. In Ubuntu, most of these are inextra
. – syntaxerror Feb 10 '16 at 02:37