3
3

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

GRUBのメニュー画面がタイムアウトしない件への対応

Posted at

Ubuntu12.04を使っていてそういうことがありました。

現象

タイムアウトしない設定をしているわけでもないのに、Ubuntuの起動時のGRUBメニューでカウントダウンしないし、いくら放置しても先に進まない。

原因

調べてみたところ、前回のシャットダウン時にエラーが発生したのでGRUBで記録されており、その際はGRUBの設定に関わらずGRUBメニューはタイムアウトなしでGRUBのメニュー画面が表示される模様。

どう対処するか

このとき、以下のコマンドを実行することでGRUBの設定を見ることができる

$ grub-editenv list

このコマンドに対して、以下の設定がリストされる場合、次回起動時はカウントダウンなしGRUBメニューを表示する

recordfail=1

対処としては、recordfail=1が記録される理由を特定し、対策を打った上で以下のコマンドを実行してrecordfailの値を元に戻す。

$ sudo grub-editenv - set recordfail=0

原因がよくわかんないけどとにかくrecordfailを設定させたくない場合はrecordfailの項目自体を消す。

$ sudo grub-editenv - unset recordfail
3
3
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
3
3

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?