Proxmox
[Proxmox] 부팅시 옵션 선택 메뉴 시간 늘이는 방법
영은파더♥
2024. 6. 26. 16:45
728x90
부팅 시작시 Grub 나오는 화면에서 5초 뒤에 자동으로 디폴트 값으로 부팅이 되는데 변경하는 방법입니다.
# vi /boot/grub/grub.cfg
if [ "${recordfail}" = 1 ] ; then
set timeout=30
else
if [ x$feature_timeout_style = xy ] ; then
set timeout_style=menu
set timeout=25
# Fallback normal timeout code in case the timeout_style feature is
# unavailable.
else
set timeout=5
fi
fi
timeout=5 를 찾아서 25로 바꿔주시면 됩니다.
728x90
반응형