/usr/share/grub/default/grub 和 /etc/default/grub 的区别?

/usr/share/grub/default/grub 和 /etc/default/grub 的区别?

/usr/share/grub/default/grubvs.有什么用/etc/default/grub?我应该编辑哪一个才能使 grub 表现不同?(如果您知道,两个不同的 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=0
GRUB_TIMEOUT_STYLE=hidden
GRUB_TIMEOUT=0
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"

# Uncomment to disable graphical terminal (grub-pc only)
#GRUB_TERMINAL=console

# The resolution used on graphical terminal
# note that you can use only modes which your graphic card supports via VBE
# you can see them in real GRUB with the command `vbeinfo'
#GRUB_GFXMODE=640x480

# Uncomment if you don't want GRUB to pass "root=UUID=xxx" parameter to Linux
#GRUB_DISABLE_LINUX_UUID=true

# Uncomment to disable generation of recovery mode menu entries
#GRUB_DISABLE_RECOVERY="true"

# Uncomment to get a beep at grub start
#GRUB_INIT_TUNE="480 440 1"

答案1

不同之处在于/usr/share目录中的所有文件都是示例配置文件。它们是可以复制到/etc目录中的文件,目录中存放着系统使用的所有配置文件。/etc/default/grub是您使用 进行更改的文件GRUB。完成对文件的更改后,运行grub-updategrub update 并使用新设置。

GRUB_DEFAULT=0
GRUB_TIMEOUT_STYLE=hidden
GRUB_TIMEOUT=0
GRUB_CMDLINE_LINUX_DEFAULT="quiet splash"
GRUB_CMDLINE_LINUX=""

这些是我真正编辑过的仅有的几个。 告诉DEFAULT操作系统默认启动;通常从不编辑这个。 这里TIMEOUT_STYLE告诉它隐藏GRUB菜单;要有一个菜单,请将其放在那里。TIMEOUT告诉 grub 在启动默认条目之前等待那么多秒。 条目CMDLINE_LINUX_DEFAULT告诉它在启动时不滚动文本 ( quiet) 并带有启动画面 ( splash);删除这些"",您将看到启动时滚动的启动消息。非常方便地查看它在哪里失败了,并且如果它不影响系统的功能,您没有必要在那里看到奇怪的失败而大惊小怪。最后一个,,CMDLINE_LINUX我从来没有真正需要编辑过;它是您添加需要在启动时传递到内核的选项的地方,以启用内核中的功能或纠正启动时的怪癖。

答案2

该文件/usr/share/grub/default/grub是包的一部分grub2-common,而 该文件/etc/default/grub不属于任何包的一部分。

我认为这是从包配置或安装后脚本中/etc/default/grub复制的,由于缺乏文档很难判断。/usr/share/grub/default/grub

您需要编辑以更改 grub 配置的文件是/etc/default/grub;记得sudo update-grub之后运行。

将原始文件放在 中是有意义的/usr/share/grub/default/grub。万一你在编辑时搞砸了/etc/default/grub或者不小心将其完全删除,你可以/etc/default/grub通过从 复制来轻松重新创建一个新的/usr/share/grub/default/grub

相关内容