服务器 16.04-默认 Grub 启动选项失败

服务器 16.04-默认 Grub 启动选项失败

我可以通过进入高级选项并选择第一个选项来启动服务器。

我的问题是如何实现自动化?在启动过程中要求某人在控制台旁只是为了选择正确的选项,从长远来看这是行不通的。

我尝试阅读 grub 手册并查看启动文件,但天哪,这真是一场噩梦!我只需要调整这一个设置...旧方法很简单,只需选择所需的默认设置,然后就大功告成了。

以下是 的副本/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=0
#GRUB_HIDDEN_TIMEOUT=0
GRUB_HIDDEN_TIMEOUT_QUIET=true
GRUB_TIMEOUT=2
GRUB_DISTRIBUTOR=`lsb_release -i -s 2> /dev/null || echo Debian`
GRUB_CMDLINE_LINUX_DEFAULT=""
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

对于不熟悉手动编辑文件的人来说,最简单的方法/etc/default/grub是使用一个名为Grub 定制器

在“常规设置”选项卡下,您将看到默认条目。只需选择您想要默认的条目即可。您还可以将其设置为显示/隐藏菜单并更改延迟时间。我仍然喜欢保留菜单并设置 3 秒左右的短暂等待时间,以防我在启动期间需要轻松进入它。

如果您想手动设置它并编辑文件,/etc/default/grub您需要将其更改GRUB_DEFAULT=0GRUB_DEFAULT="Advanced options for Ubuntu>Ubuntu, with Linux 4.4.0-21-generic"或任何您想要的内核的正确行..请注意高级选项行..这是因为内核位于子菜单中。

完成并保存更改后,您需要sudo update-grub从终端运行以更新更改,否则它将在下次启动时被覆盖

相关内容