ubuntu修改grub,修改开机顺序,配置grub启动顺序

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了ubuntu修改grub,修改开机顺序,配置grub启动顺序相关的知识,希望对你有一定的参考价值。

方法一:

1.进入Ubuntu系统后打开终端

2.终端中输入以下命令

sudo gedit /boot/grub/grub.cfg

3.找到Windows的配置将其剪切到Ubuntu的前面

把下面

### BEGIN /etc/grub.d/30_os-prober ###
menuentry ‘Windows 7 (loader) (on /dev/sda1)‘ --class windows --class os $menuentry_id_option ‘osprober-chain-D4C4BF7AC4BF5E04‘ {
    insmod part_msdos
    insmod ntfs
    set root=‘hd0,msdos1‘
    if [ x$feature_platform_search_hint = xy ]; then
      search --no-floppy --fs-uuid --set=root --hint-bios=hd0,msdos1 --hint-efi=hd0,msdos1 --hint-baremetal=ahci0,msdos1  D4C4BF7AC4BF5E04
    else
      search --no-floppy --fs-uuid --set=root D4C4BF7AC4BF5E04
    fi
    parttool ${root} hidden-
    chainloader +1
}
set timeout_style=menu
if [ "${timeout}" = 0 ]; then
  set timeout=10
fi
### END /etc/grub.d/30_os-prober ###

拷贝到   ### BEGIN /etc/grub.d/10_linux ###  de qianmian 之前

方法二:

1.终端中输入 sudo gedit /etc/default/grub

2.设置default-set=4


以上是关于ubuntu修改grub,修改开机顺序,配置grub启动顺序的主要内容,如果未能解决你的问题,请参考以下文章

win10 ubuntu双系统启动顺序

gnu grub version 2.0.4设置启动顺序

关于ubuntu的grub2引导

ubuntu16.10 设置grub菜单的默认等待时间,开机时显示详细的引导信息

ubuntu 修改开机分辨率

GNU GRUB下的系统引导 顺序 怎么改