web-dev-qa-db-ja.com

起動時の「ルートを待つ」というエラー

最近Windows 8がプリインストールされているUEFIベースのシステムにUBUNTU 14.04をインストールしましたが、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.

Exitを押してからEnterキーを押すと、問題なく起動します。私はそれを修正するためにブート修復を試みました、そしてこれは私が得たものです。

ブート修復出力

この問題を取り除く方法を教えてください。

1
Tiru Maloth

同じ問題が発生しましたが、次のリンクを使用して解決できます

http://blog.wittchen.biz.pl/ubuntu-system-boot-problem/

試行#1

最初に、エラーメッセージが示すようにrootdelayを変更しようとしました。ファイル/ etc/default/grubを開いたところ、次の行が見つかりました:GRUB_CMDLINE_LINUX_DEFAULT = "quiet splash"に変更しました:GRUB_CMDLINE_LINUX_DEFAULT = "rootdelay = 90 quiet splash" rootdelayは長くなりましたが、残念ながら問題は修正されませんでした私の場合。

試行#2

/ etc/fstabファイルを編集しました。ターミナルで次のコマンドを実行しました。sudogedit/etc/fstabとgeditでfstabファイルを編集しました。最初、私のファイルは次のようになりました。

# /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

次に、1行にコメントを付け、/ dev/sda1ディスクデバイスを説明する別の行を追加しました。今、私のファイルは次のようになります:

# /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

問題はまだ存在していたので、私はそれを解決するためにもう一度試みました。

試行#3

端末を開いて次のコマンドを入力しました。

Sudo grub-install /dev/sda

次に、grubを更新する別のコマンドを入力しました。

Sudo update-grub

このすべての後、コンピュータを再起動し、最後にエラーがなくなり、問題が修正されました!

1
user3441273