Correção de curto prazo
Esta é a tela inicial de Plymouth. Como correção de curto prazo, você pode desativá-lo editando o arquivo /etc/default/grub
com sudo
powers e pesquisando por esta linha:
GRUB_CMDLINE_LINUX_DEFAULT="quiet splash"
Remova o parâmetro splash
para que fique assim:
GRUB_CMDLINE_LINUX_DEFAULT="quiet"
OBSERVAÇÃO: você pode ter outras opções além de quite splash
. Remova apenas a opção splash
.
Salve o arquivo e saia do seu editor. Então use:
sudo update-grub
Na próxima reinicialização, em vez da tela roxa com pontos em movimento, você terá uma tela preta simples.
Correção de longo prazo
A partir do uso do terminal:
$ systemctl list-units --all plymouth-quit-wait.service
UNIT LOAD ACTIVE SUB DESCRIPTION
plymouth-quit-wait.service loaded inactive dead Hold until boot process finishes up
LOAD = Reflects whether the unit definition was properly loaded.
ACTIVE = The high-level unit activation state, i.e. generalization of SUB.
SUB = The low-level unit activation state, values depend on unit type.
1 loaded units listed.
To show all installed unit files use 'systemctl list-unit-files'.
Acima está a saída normal. Compare o seu e relate quaisquer diferenças na sua pergunta.
O próximo passo é procurar por mensagens de erro usando:
$ journalctl -b-1 | grep -i plymouth
Apr 03 05:36:13 alien systemd[1]: Starting Show Plymouth Boot Screen...
Apr 03 05:36:14 alien systemd[1]: Started Show Plymouth Boot Screen.
Apr 03 05:36:14 alien systemd[1]: Started Forward Password Requests to Plymouth Directory Watch.
Apr 03 05:36:14 alien systemd[1]: Received SIGRTMIN+20 from PID 389 (plymouthd).
Apr 03 05:36:15 alien systemd[1]: Starting Tell Plymouth To Write Out Runtime Data...
Apr 03 05:36:15 alien systemd[1]: Started Tell Plymouth To Write Out Runtime Data.
Apr 03 05:36:15 alien systemd[1]: Received SIGRTMIN+21 from PID 389 (plymouthd).
Apr 03 05:39:32 alien systemd[1]: Starting Show Plymouth Reboot Screen...
Apr 03 05:39:33 alien systemd[1]: Received SIGRTMIN+20 from PID 20980 (plymouthd).
Apr 03 05:39:33 alien systemd[1]: Started Show Plymouth Reboot Screen.
Apr 03 05:39:34 alien systemd[1]: Stopped Forward Password Requests to Plymouth Directory Watch.
Mais uma vez, o acima é uma saída normal.