设置CentOS7开机等待时间

找到 /boot/grub2 下的 grub.cfg

找到并修改下面的代码:

terminal_output console
if [ x$feature_timeout_style = xy ] ; then
  set timeout_style=menu
  set timeout=5(修改成1,不要修改成0,修改完成后,重启即可看到效果)
# Fallback normal timeout code in case the timeout_style feature is
# unavailable.
else
  set timeout=5
fi
### END /etc/grub.d/00_header ###

原文地址:https://www.cnblogs.com/seamanone/p/9503765.html