# If you change this file,run 'update-grub' afterwards to update@H_404_2@
# /boot/grub/grub.cfg.@H_404_2@
# For full documentation of the options in this file,see:@H_404_2@
# info -f grub -n 'Simple configuration'@H_404_2@
# vim /etc/default/grub@H_404_2@
GRUB_DEFAULT=0@H_404_2@ #->设置默认启动项(0@H_404_2@:第一个菜单),按menuentry顺序。比如要默认从第2@H_404_2@个菜单项启动,数字改为1@H_404_2@。
GRUB_HIDDEN_TIMEOUT=0@H_404_2@
GRUB_HIDDEN_TIMEOUT_QUIET=true@H_404_2@
GRUB_TIMEOUT=10@H_404_2@ #10@H_404_2@s
GRUB_DISTRIBUTOR=`lsb_release -i -s 2@H_404_2@> /dev/null@H_404_2@ || echo Debian`
GRUB_CMDLINE_LINUX=""@H_404_2@
#GRUB_CMDLINE_LINUX_DEFAULT="quiet splash" #默认的@H_404_2@
GRUB_CMDLINE_LINUX_DEFAULT="quiet splash nomodeset"@H_404_2@ #黑屏
#GRUB_CMDLINE_LINUX_DEFAULT="quiet splash text" #无GUI界面,文本行显示@H_404_2@
# Uncomment to enable BadRAM filtering,modify to suit your needs@H_404_2@
# This works with Linux (no patch required) and with any kernel that obtains@H_404_2@
# the memory map information from GRUB (GNU Mach,kernel of FreeBSD ...)@H_404_2@
#GRUB_BADRAM="0x01234567,0xfefefefe,0x89abcdef,0xefefefef"@H_404_2@
# Uncomment to disable graphical terminal (grub-pc only)@H_404_2@
#GRUB_TERMINAL=console @H_404_2@
# The resolution used on graphical terminal@H_404_2@
# note that you can use only modes which your graphic card supports via VBE@H_404_2@
# you can see them in real GRUB with the command `vbeinfo'@H_404_2@
#GRUB_GFXMODE=640x480@H_404_2@
GRUB_GFXMODE=1920@H_404_2@x1080 #修改显示分辨率
# Uncomment if you don't want GRUB to pass "root=UUID=xxx" parameter to Linux@H_404_2@
#GRUB_DISABLE_LINUX_UUID=true@H_404_2@
# Uncomment to disable generation of recovery mode menu entries@H_404_2@
#GRUB_DISABLE_RECOVERY="true"@H_404_2@
# Uncomment to get a beep at grub start@H_404_2@
#GRUB_INIT_TUNE="480 440 1"@H_404_2@
~
~
ubuntu14.04 用了不就终端黑屏了,全黑色,输入文字啥也看不到,其他的程序边框黑色。 GRUB_CMDLINE_LINUX_DEFAULT=”quiet splash nomodeset” #黑屏
GRUB_GFXMODE=1920x1080 #修改显示分辨率
These are instructions passed to the kernel during the boot time. In Ubuntu,they are managed by the GNU GRUB (GRand Unified Bootloader).
. quiet - this option tells the kernel to NOT produce any output (a.k.a. Non verbose mode). If you boot without this option,you’ll see lots of kernel messages such as drivers/modules activations,filesystem checks and errors. Not having the quiet parameter may be useful when you need to find an error. . splash - this option is used to start an eye-candy “loading” screen while all the core parts of the system are loaded in the background. If you disable it and have quiet enable you’ll get a blank screen. . nomodeset - tells the kernel to not start video drivers until the system is up and running.