如何让gurb2更新配置不检索其他系统,或让gurb2启动时隐藏?

启动讨论 grub/grub2/syslinux/grub4dos/Lilo
回复
头像
qq420100523
帖子: 1684
注册时间: 2009-07-31 18:56
系统: windows、ubuntu
来自: 广东阳江

如何让gurb2更新配置不检索其他系统,或让gurb2启动时隐藏?

#1

帖子 qq420100523 » 2017-07-01 2:49

想实现开机不跳出gurb2的选择界面,因为windows系统可以让EUFI引导,反而让gurb2引导会出现进入不了windows系统。
我知道当只有ubuntu时,gurb2界面是默认隐藏的,如果更新gurb配置检索到其他系统后会出现10秒的等候,是否可以让gurb更新时不检索其他系统而实现默认隐藏选择界面呢?还是可以设置参数让gurb隐藏,直接进入ubuntu系统。因为当我有必要进入windows时,我会利用bios选择用EUFI引导进入windows系统。
**********************
我尝试这样修改:

代码: 全选

1.sudo gedit /etc/default/grub
修改如下:
GRUB_HIDDEN_TIMEOUT=0
GRUB_HIDDEN_TIMEOUT_QUIET=true
GRUB_TIMEOUT=0

2.sudo update-grub
但是等待时间为10秒

代码: 全选

cat /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=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"
头像
qq420100523
帖子: 1684
注册时间: 2009-07-31 18:56
系统: windows、ubuntu
来自: 广东阳江

Re: 如何让gurb2更新配置不检索其他系统,或让gurb2启动时隐藏?

#3

帖子 qq420100523 » 2017-07-01 9:47

感谢,非常完美地解决了我的问题需求。 :em02
回复