起動すると、2つの項目を含むGrubオプションのリストが表示されます。
Gentoo Linux x.x.x
Gentoo Linux x.x.x.(rescue)
The highlighted entry will be booted automatically in 30 seconds.
最初の起動で自動起動するように設定するにはどうすればよいですか?それが不可能な場合、タイマーを1〜2秒に下げる方法はありますか?
理想的には、以前に起動エラーが発生した場合にのみこの画面を表示します。そうでない場合は、この画面をスキップしてシステムに直接移動したいと思います。
答え1
以前のバージョンのGRUBでは、設定default
したいカーネルセクションとGRUBの待機時間(秒)に対応するようにファイルと変数を設定するだけです。timeout
/etc/grub.conf
メモ:セクションには0から番号が付けられます。
はいこれは私のCentOS 5ドキュメントの一部ですが、何をすべきかについてのアイデアを提供する必要があります。
$ sudo more /etc/grub.conf
# grub.conf generated by anaconda
#
# Note that you do not have to rerun grub after making changes to this file
# NOTICE: You have a /boot partition. This means that
# all kernel and initrd paths are relative to /boot/, eg.
# root (hd0,4)
# kernel /vmlinuz-version ro root=/dev/VolGroup00/LogVol00
# initrd /initrd-version.img
#boot=/dev/sda
default=1
timeout=5
splashimage=(hd0,4)/grub/splash.xpm.gz
hiddenmenu
title CentOS (2.6.18-348.3.1.el5.centos.plus)
root (hd0,4)
kernel /vmlinuz-2.6.18-348.3.1.el5.centos.plus ro root=/dev/VolGroup00/LogVol00 rhgb quiet
initrd /initrd-2.6.18-348.3.1.el5.centos.plus.img
title CentOS (2.6.18-274.18.1.el5.centos.plus)
root (hd0,4)
kernel /vmlinuz-2.6.18-274.18.1.el5.centos.plus ro root=/dev/VolGroup00/LogVol00 rhgb quiet
initrd /initrd-2.6.18-274.18.1.el5.centos.plus.img
上記の例では、セクション 1 をデフォルト値に設定しました。