Grub Legacy - 시작 옵션 자동 선택

Grub Legacy - 시작 옵션 자동 선택

시작할 때 두 개의 항목이 있는 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을 기본값으로 설정했습니다.

관련 정보