That's it. For some reason, my boot/shutdown screen doesn't show the spinning animation anymore.
I'm running Ubuntu 20.04 with Bundgie.
I've tried almost everything, like:
sudo update-alternatives --config default.plymouth
sudo update-initramfs -u -k all
Reinstalled plymouth and all packages related to it.
Reinstalled all plymouth themes.
Changed between themes and tested.
sudo -H gedit /etc/initramfs-tools/conf.d/splash
to insertFRAMEBUFFER=y
Can you guys help me out on this? Thanks in advance.
EDITED to show the results of sudo update-alternatives --config default.plymouth
as suggested by @heynnema
There are 5 choices for the alternative default.plymouth (providing /usr/share/plymouth/themes/default.plymouth).
Selection Path Priority Status
0 /usr/share/plymouth/themes/ubuntu-budgie-logo/ubuntu-budgie-logo.plymouth 150 auto mode
- 1 /usr/share/plymouth/themes/bgrt/bgrt.plymouth 110 manual mode
2 /usr/share/plymouth/themes/spinner/spinner.plymouth 70 manual mode
3 /usr/share/plymouth/themes/ubuntu-budgie-logo/ubuntu-budgie-logo-scale-2.plymouth 149 manual mode
4 /usr/share/plymouth/themes/ubuntu-budgie-logo/ubuntu-budgie-logo.plymouth 150 manual mode
5 /usr/share/plymouth/themes/ubuntu-logo/ubuntu-logo.plymouth 100 manual mode
Press <enter> to keep the current choice[*], or type selection number:
Results of 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_TIMEOUT_STYLE="hidden"
GRUB_TIMEOUT="10"
GRUB_DISTRIBUTOR="lsb_release -i -s 2> /dev/null || echo Debian
"
GRUB_CMDLINE_LINUX_DEFAULT="quiet splash net.ifnames=0"
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="2560x1440x16"
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_THEME="/usr/share/grub/themes/Vimix/theme.txt"
sudo update-alternatives --config default.plymouth
. Start comments to me with @heynnema or I'll miss them. – heynnema Jul 07 '20 at 21:47sudo update-initramfs -u -k $(uname -r)
and thenreboot
. – heynnema Jul 08 '20 at 16:54update-initramfs
command? And you're booting to the newest kernel? Do you see the OEM logo at boot now? Show mecat /etc/default/grub
. – heynnema Jul 08 '20 at 17:04sudo update-alternatives --config default.plymouth
. Comment outGRUB_GFXMODE="2560x1440x16"
in /etc/default/grub, then runsudo update-grub
, thenreboot
. – heynnema Jul 08 '20 at 17:44GRUB_GFXMODE
commented out, edit/etc/initramfs-tools/conf.d/splash
to remove FRAMEBUFFER=y (or remove splash if that's the only thing in it). Update-initramfs. Reboot. – heynnema Jul 08 '20 at 17:55