Gave up waiting for root device 에러가 나는데ㅠ.ㅠ 답변 부탁 드립니다

[b:2pz9mlqu]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/d99e17af-73f5-427c-a325-b7465e7b7b0c does not exist. dropping to a shell!!

busybox v1.13.3(ubuntu 1:1.13.3-1ubuntu11) built-in shell(ash)
enter ‘help’ for a list of built-in commands[/b:2pz9mlqu]

(initramfs)

root device가 load가 제대로 안되서 생긴 문제 인것 같은데
인터넷에서 해결 방법을 몇가지 찾아서 해 보았지만 문제 해결이 안되네요
현재 ubuntu 10.04버전을 설치한 상태 입니다.

방법1: live cd로 부팅 후 grub파일 재 설정
live cd로 부팅 해서 grub.cfg파일을 변환 후 저장하려고 하니깐 root권한이 없어서 파일 변환이 안된다고 하네요.
[color=#BF0000:2pz9mlqu]http://blog.foxb.kr/216[/color:2pz9mlqu] <- 이 방법처럼 해 봤습니다.

방법2: exit로 booting진행 후 grub파일 변환
exit입력 시 다시 해당 화면으로 돌아 옵니다.

방법3: ubuntu 를 재 설치
재설치 후에도 동일한 화면 prompt로 들어가 집니다.

이외에도 몇가지 더 하라는 대로 해 보았지만…역시…안되네요.ㅠ.ㅠ
이런 문제에 대해서 잘 아시는 분 답변 부탁 드립니다.

감사합니다.

[quote="mibu":2712dq5h][b]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/d99e17af-73f5-427c-a325-b7465e7b7b0c does not exist. dropping to a shell!!
    [/quote:2712dq5h]
    올려주신 글에 시도해볼만한 해결책이 있네요.

root device를 확인해보세요.

메세지로 봐선 root device로 /dev/disk/by-uuid/d99e17af-73f5-427c-a325-b7465e7b7b0c가 설정돼있는데

찾지 못했고 관련 드라이버 모듈이 안올라가서 그럴 수 있으니

cat /proc/modules로 모듈 잘 올라갔나 확인해보라고하네요.

잘 안되시면 grub에 root device 설정을

uuid 스타일이 아닌 /dev/sda1 이런 스타일로 수정하시고 부팅해보세요.

[code:2712dq5h]$ cat /boot/grub/menu.lst
title Ubuntu 10.04.1 LTS, kernel 2.6.32-25-generic-pae
uuid 78455180-dbfa-45af-b552-9ac78023a401
kernel /boot/vmlinuz-2.6.32-25-generic-pae root=UUID=78455180-dbfa-45af-b552-9ac78023a401 ro quiet splash
initrd /boot/initrd.img-2.6.32-25-generic-pae
quiet

$ sudo blkid
/dev/sda1: UUID="78455180-dbfa-45af-b552-9ac78023a401" TYPE="ext3"
/dev/sda2: UUID="50456e13-edac-466a-8e22-571da44d400c" TYPE="ext3"
/dev/sda3: UUID="b79420cd-60d6-4ef8-8a50-66e8e2a957a4" TYPE="ext3"
/dev/sda4: UUID="4ce3c0db-a090-4340-80a2-15e136f88e51" TYPE="swap"
/dev/sdb1: LABEL="VFAT" UUID="0D8E-1FC4" TYPE="vfat"
/dev/sdb2: LABEL="ntfs" UUID="6248830A4882DC63" TYPE="ntfs"
/dev/sdb3: LABEL="ext4" UUID="e3ac811f-37b1-449f-a7eb-2e5296e77b08" TYPE="ext4"

$ cat /boot/grub/menu.lst
title Ubuntu 10.04.1 LTS, kernel 2.6.32-25-generic-pae
kernel /boot/vmlinuz-2.6.32-25-generic-pae root=/dev/sda1 ro quiet splash
initrd /boot/initrd.img-2.6.32-25-generic-pae
quiet
[/code:2712dq5h]