Java教程

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

本文主要是介绍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

 

这篇关于ubuntu和Windows双系统修改grub默认启动顺序的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!