安装双系统后设置默认系统、设置选择grub的界面的超时时间

1、命令行通过sudo vim /boot/grub/grub.cfg进入配置文件
2、在文件中找到如下内容

if [ "${next_entry}" ] ; then
   set default="${next_entry}"
   set next_entry=
   save_env next_entry
   set boot_once=true
else
   set default="3"
fi

3、将set default="3"中的数字3设置成你要进入的默认的系统在选择grub界面中的位置,例如第一个就设置成0,第二个设置成1,以此类推
4、若要设置超时时间,同样在该文件中,找到

terminal_output gfxterm
if [ "${recordfail}" = 1 ] ; then
  set timeout=100
else
  if [ x$feature_timeout_style = xy ] ; then
    set timeout_style=menu
    set timeout=100
  # Fallback normal timeout code in case the timeout_style feature is
  # unavailable.
  else
    set timeout=100
  fi
fi

5、将其中的timeout字段(有三个)设置成你要设置的超时时间即可,单位是秒
6、最后,按下esc键,输入wq!,然后回车即可强制保存该文件并退出,即可设置完成

你可能感兴趣的:(Linux,windows,linux,grub,超时时间,双系统,默认系统)