Changing the Bootsplash Screen in Ubuntu
How to reset the default Plymouth theme in Ubuntu to avoid crashes.
Join the DZone community and get the full member experience.
Join For FreePlymouth is the default bootsplash app used in Ubuntu. It displays the Ubuntu logo while booting.
For as long as I can remember, every time I install the proprietary NVidia display driver, my bootsplash gets borked. It just displays a black screen, then a few flickers of the Ubuntu logo or NVidia logo, then the desktop is presented.
It seems that simply resetting the default Plymouth theme fixes this issue:
$ sudo update-alternatives --config default.plymouth
Apply changes:
$ sudo update-initramfs -u
Here is how to switch the bootsplash to [my favorite] the solar theme:
$ sudo apt-get install plymouth-theme-solar
$ sudo update-alternatives --config default.plymouth
$ sudo update-initramfs -u
Then reboot!
More info: https://wiki.ubuntu.com/Plymouth
Published at DZone with permission of Corey Goldberg, DZone MVB. See the original article here.
Opinions expressed by DZone contributors are their own.
Comments