I am a Gnome user. Just out of curiosity, I installed the package kubuntu-desktop to check out the latest KDE. The package has hijacked and replaced the nice ubuntu boot splash with the blue KDE one. How can I get the original boot splash back ? Which package should I re-install ?
Asked
Active
Viewed 3.3k times
5 Answers
38
If you want to quickly change it back, sudo update-alternatives --config default.plymouth will give you a list of screens you can choose from.
Nick Pascucci
- 1,930
5
If you do this, you should be back to normal:
sudo apt-get purge kubuntu-desktop
sudo apt-get autoremove --purge
sudo apt-get install ubuntu-deskop
The splash screen is selected via update-alternatives, but the above should restore the links too.
Kees Cook
- 17,823
5
Trying out codeMonk's answer gave me an error after I selected the ubuntu-logo option:
update-alternatives: warning: forcing reinstallation of alternative /lib/plymouth/themes/ubuntu-logo/ubuntu-logo.plymouth because link group default.plymouth is broken.
Running this command fixed that for me:
sudo apt-get install --reinstall plymouth-theme-ubuntu-logo
daniel kullmann
- 1,727
-1
Turning ON/OFF the splash screen on boot is easily changeable via GRUB.
sudo vim /etc/default/grub
You'll see GRUB_CMDLINE_LINUX_DEFAULT="quiet splash"
- Remove
splashfrom this line - Save with
:wq sudo update-grubsudo reboot now
Splash screen will no longer appear.
Peachy
- 7,235
- 10
- 40
- 47
Kevin J. Rice
- 101