/usr/share/grub/default/grub
vs有什么用/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"
不同之处在于
/usr/share
目录中的所有文件都是示例配置文件。它们是可以复制到/etc
目录中的文件,该目录是系统使用的所有配置文件所在的位置。/etc/default/grub
是您编辑以进行更改的文件GRUB
。完成对文件的更改后,运行grub-update
grub 更新并使用新设置。这些是我唯一真正编辑过的。
DEFAULT
告诉操作系统默认启动;通常从不编辑这个。这里TIMEOUT_STYLE
告诉它隐藏GRUB
菜单;有一个菜单把它放在那里。TIMEOUT
告诉 grub 在引导默认条目之前等待几秒钟。该CMDLINE_LINUX_DEFAULT
条目告诉它在没有文本滚动 (quiet
) 和启动屏幕 (splash
) 的情况下启动;删除那些拥有""
,你会看到引导时滚动的引导消息。很容易看到它在哪里失败,如果你确实看到那里的奇怪故障,如果它不影响系统的运行,没有理由全力以赴。最后,CMDLINE_LINUX
,我从来没有真正需要编辑;您可以在其中添加需要在启动时传递到内核中的选项,以启用内核中的功能或纠正启动时的怪癖。该文件
/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
.