Como posso desativar o splash purple bootloader na inicialização?

5

Esta questão foi respondida antes , mas nenhum dos métodos na resposta aceita funcionou para mim em 11.10.

Primeiro, tentei editar em /etc/default/grub e, em seguida, executar sudo update-grub . Mas depois disso, eu ainda tenho uma tela roxa vazia enquanto o kernel está carregando. A tela não tem opções de boot, e obscurece aqueles dmesg que eu quero ver indo no terminal.

Depois eu tentei remover o plymouth-theme-* , mas isso quebrou o visual do meu tema gnome-shell, e a tela roxa ainda permanece.

Eu também tentei configurá-lo com startupmanager package, mas nada parece se livrar desse splash roxo.

aqui está o conteúdo do meu arquivo /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=""
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"

GRUB_DISABLE_OS_PROBER="true"
    
por wim 16.12.2011 / 05:14

3 respostas

3

Tente isso

sudo mv /etc/init/plymouth.conf /etc/init/plymouth.conf.disabled
    
por Panther 16.12.2011 / 06:14
2

Remova o comentário #GRUB_TERMINAL=console de /etc/default/grub .

    
por Edwin 09.05.2012 / 23:15
1

O Grub carrega sua cor de fundo de /lib/plymouth/themes/default.grub (como visto em /etc/grub.d/05_debian_theme ).

Eu não sei a maneira padrão de mudar essa cor, mas editar /lib/plymouth/themes/default.grub funcionou para mim:

if background_color 0,0,0; then
    clear
fi

Em seguida, na linha de comando, digite sudo update-grub

    
por tera 28.12.2011 / 16:30