Tell me more ×
Ask Ubuntu is a question and answer site for Ubuntu users and developers. It's 100% free, no registration required.

With regards to Plymouth --

Are there alternative boot screens available?

What's the easiest way to change the boot screen?

share|improve this question

2 Answers

up vote 12 down vote accepted

You can get a list of themes available via the repositories through Synaptic Package Manager or through the command line via aptitude:

$ aptitude search plymouth-theme
p   lubuntu-plymouth-theme        - plymouth theme for Lubuntu                                                                                                                        
p   plymouth-theme-fade-in        - graphical boot animation and logger - fade-in theme                        
p   plymouth-theme-glow           - graphical boot animation and logger - glow theme                           
i   plymouth-theme-kubuntu-logo   - graphical boot animation and logger - kubuntu-logo theme                   
p   plymouth-theme-sabily         - plymouth theme for Sabily                                                  
p   plymouth-theme-script         - graphical boot animation and logger - script theme                         
p   plymouth-theme-solar          - graphical boot animation and logger - solar theme                          
p   plymouth-theme-spinfinity     - graphical boot animation and logger - spinfinity theme                     
p   plymouth-theme-text           - graphical boot animation and logger - text theme                           
c   plymouth-theme-ubuntu-logo    - graphical boot animation and logger - ubuntu-logo theme                    
i   plymouth-theme-ubuntu-text    - graphical boot animation and logger - ubuntu-logo theme                    
p   plymouth-theme-ubuntustudio   - Ubuntu Studio Plymouth theme                                               
p   xubuntu-plymouth-theme        - Plymouth theme for Xubuntu           

You can then install the resulting packages via Synaptic or aptitude as normal:

$ sudo aptitude install plymouth-theme-solar

If you're looking for something not in the repositories, UbuntuGeek has an excellent tutorial on how to install and create your own custom Plymouth themes.

share|improve this answer
2  
Be careful because not all of the themes support the boot messages generated by Ubuntu. – Scott Oct 29 '10 at 13:46

To change between the installed themes you should do:

sudo update-alternatives --config default.plymouth
sudo update-initramfs -u

The first will list available themes to choose from, the second command with update initramfs with a new theme.

share|improve this answer
1  
Thanks for adding that. +1. – AgentK Aug 15 '10 at 23:53
1  
Cool -- still works in 11.10. – belacqua Oct 22 '11 at 2:47

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.