Linux入门001_修改系统启动顺序

本文最后更新于:2023年10月22日 下午

多系统引导,修改grub启动顺序。

修改grub文件

直接修改grub文件,位置/etc/defauts/grub

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
Linux@Linux-Vostro-260:~$ sudo gedit /etc/default/grub
[sudo] password for Linux:

______________________________________________________________
# 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=4
GRUB_TIMEOUT_STYLE=hidden
GRUB_TIMEOUT=8
GRUB_DISTRIBUTOR=`lsb_release -i -s 2> /dev/null || echo Debian`
GRUB_CMDLINE_Linux_DEFAULT="quiet splash"
GRUB_CMDLINE_Linux=""

# Uncomment to enable BadRAM filtering, modify to suit your needs
# This works with Linux (no patch required) and with any kernel that obtains
# the memory map information from GRUB (GNU Mach, kernel of FreeBSD ...)
#GRUB_BADRAM="0x01234567,0xfefefefe,0x89abcdef,0xefefefef"

GRUB_DEFAULT=4,其中第一项是0,第二项是1,以此类推。以本机的启动选项来说,如果将最后一个作为启动默认选项,则数字为4


Linux入门001_修改系统启动顺序
https://linuxdeepin007.github.io/code.github.io/2022/06/23/Linux入门001_修改系统启动顺序/
作者
望月砂
发布于
2022年6月23日
更新于
2023年10月22日
许可协议