OS, Container/Operating System
GRUB(Ubuntu)
JunMoo
2020. 10. 3. 20:00
GRUB(GRand Unified Bootloader)란, Ubuntu를 부팅할 때 처음 나오는 선택화면!
간단하게 /etc/default/grub 설정파일의 내용만 이해해보자.
# If you change this file, run 'update-grub' afterwards to update
# /boot/grub/grub.cfg.
# For full documentation of the options in this file, see:
# info -f grub -n 'Simple configuration'
GRUB_DEFAULT=0
GRUB_TIMEOUT_STYLE=hidden
GRUB_TIMEOUT=0
GRUB_DISTRIBUTOR=`lsb_release -i -s 2> /dev/null || echo Debian`
GRUB_CMDLINE_LINUX_DEFAULT="quiet splash"
GRUB_CMDLINE_LINUX=""
# Uncomment to enable BadRAM filtering, modify to suit your needs
# This works with Linux (no patch required) and with any kernel that obtains
# the memory map information from GRUB (GNU Mach, kernel of FreeBSD ...)
#GRUB_BADRAM="0x01234567,0xfefefefe,0x89abcdef,0xefefefef"
# Uncomment to disable graphical terminal (grub-pc only)
GRUB_TERMINAL=console
# The resolution used on graphical terminal
# note that you can use only modes which your graphic card supports via VBE
# you can see them in real GRUB with the command `vbeinfo'
#GRUB_GFXMODE=640x480
# Uncomment if you don't want GRUB to pass "root=UUID=xxx" parameter to Linux
#GRUB_DISABLE_LINUX_UUID=true
# Uncomment to disable generation of recovery mode menu entries
#GRUB_DISABLE_RECOVERY="true"
# Uncomment to get a beep at grub start
#GRUB_INIT_TUNE="480 440 1"
- GRUB_DEFAULT=0
GRUB 목록 중에서 0번째(첫 번째)를 기본으로 선택 - #은 주석처리
- GRUB_TIMEOUT_STYLE=hidden
화면에 GRUB 목록이 보이지 않도록 설정 - GRUB_TIMEOUT=0
처음 화면이 나온 후 자동으로 부팅되는 시간을 second 단위로 설정. - GRUB_DISTRIBUTOR='lsb_release -i -s 2> /dev/null || echo Debian`
배포판의 이름을 추출. Ubuntu가 출력될 것이다. - GRUB_CMDLINE_LINUX_DEFAULT="quiet splash"
서브메뉴 사용 여부를 설정. - GRUB_CMDLINE_LINUX=""
GRUB가 나올 장치 선택. Default value로 console이 설정되어 있으며, 이는 모니터!
자세한 메뉴얼은 링크 참조!
너무 방대한 내용이라서 추후에 따로 탭을 파서 다룰 예정.