Remove Grub Menu
Tofloor
poster avatar
ajjethan
deepin
2018-12-01 07:51
Author
Hello,

Today I have installed Deepin 15.8 in my laptop.I like it a lot. Thank you Devs. In the mean time what bothering me is the poping up of grub menu every time. Can I diable it so when i power on my laptop take me to directly in login screen?

# Written by com.deepin.daemon.Grub2GRUB_BACKGROUND="/boot/grub/themes/deepin/background.png"GRUB_CMDLINE_LINUX=""GRUB_CMDLINE_LINUX_DEFAULT="splash quiet "GRUB_DEFAULT=0GRUB_DISTRIBUTOR="`/usr/bin/lsb_release -d -s 2>/dev/null || echo Deepin`"GRUB_GFXMODE=1024x768GRUB_THEME="/boot/grub/themes/deepin/theme.txt"GRUB_HIDDEN_TIMEOUT_QUIET=1
There's no hide code .

Please help
Reply Favorite View the author
All Replies
oscararg
deepin
2018-12-01 18:06
#1
Yes, "GRUB_CMDLINE_LINUX_DEFAULT="splash quiet loglevel=0"  
Reply View the author
ajjethan
deepin
2018-12-01 21:42
#2
https://bbs.deepin.org/post/171821
Yes, "GRUB_CMDLINE_LINUX_DEFAULT="splash quiet loglevel=0"  

# Written by com.deepin.daemon.Grub2
GRUB_CMDLINE_LINUX=""
GRUB_CMDLINE_LINUX_DEFAULT="splash quiet loglevel=0 "
GRUB_DEFAULT=0
GRUB_DISTRIBUTOR="`/usr/bin/lsb_release -d -s 2>/dev/null || echo Deepin`"
GRUB_GFXMODE=1024x768
GRUB_HIDDEN_TIMEOUT_QUIET=1
GRUB_TIMEOUT=1


This is the code now. But still getting grub menu
Reply View the author
abc
deepin
2018-12-02 01:08
#3
step 1: sudo vim /etc/defaults/grub
step 2: modify GRUB_DEFAULT=0
step 3 : sudo update-grub
Reply View the author
oscararg
deepin
2018-12-02 07:51
#4
https://bbs.deepin.org/post/171821
# Written by com.deepin.daemon.Grub2
GRUB_CMDLINE_LINUX=""
GRUB_CMDLINE_LINUX_DEFAULT="splash quie ...

Oh, I misunderstood, was thinking that you wanted to hide text info at booting, for that task are the lines which I gave you. Add these:

GRUB_HIDDEN_TIMEOUT=0
GRUB_HIDDEN_TIMEOUT_QUIET=true
Reply View the author
int_max
deepin
2018-12-02 12:06
#5
I think there is an option group in the settings panel (I'm not sure whether it is called settings panel. That panel can be opened by hovering your cursor to the lower right corner of the screen) related to GRUB menu, whose name contains `GRUB'. You can find something like `timeout' or `hide' for skipping/hiding the menu.
Reply View the author
int_max
deepin
2018-12-02 12:09
#6
If you know how to edit the config file using vim, just follow the instructions provided by oscararg et al.
Reply View the author
oscararg
deepin
2018-12-02 17:33
#7
He was editing the grub.conf file, so I suppose he knows how to do that, it can be done more easily (than vim or nano) using sudo deepin-editor /etc/default/grub
Reply View the author