ubuntu和Windows双系统修改grub默认启动顺序

 

一般grub引导界面的默认的顺序是

Ubuntu
Advanced options for Ubuntu
Windows 10

那么对应的 GRUB_DEFAULT 顺序是0、1、2

sudo gedit /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=2
GRUB_TIMEOUT_STYLE=hidden
GRUB_TIMEOUT=10
GRUB_DISTRIBUTOR=`lsb_release -i -s 2> /dev/null || echo Debian`
GRUB_CMDLINE_LINUX_DEFAULT=""
GRUB_CMDLINE_LINUX="text"

修改 GRUB_DEFAULT=0 即可 默认启动顺序为Ubuntu

最后更新生效一下

sudo update-grub

 

posted @ 2021-11-22 16:25  小小灰迪  阅读(3175)  评论(0编辑  收藏  举报