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

This question already has an answer here:

I'd like to be able to disable the Ubuntu splash screen that I see on boot with the indicator meter of progress, and replace that with a text-only readout of the boot up process (such as you can get by hitting the esc key during the splash screen). Is this possible?

share|improve this question

marked as duplicate by Jorge Castro, Luis Alvarado Apr 12 at 4:57

This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.

1 Answer

up vote 19 down vote accepted

Yes. Edit /etc/default/grub (using gksu gedit /etc/default/grub), and remove the "quiet splash" from the Linux command line.

After this run sudo update-grub2

Also from the GRUB menu, if you want to do this temporarily, you can hit E on a line to edit it, then Ctrl+X to boot the kernel line.

Make sure you don't have plymouth-theme-ubuntu-text package installed.

share|improve this answer
1  
In addition to this, if you want to see the kernel startup messages you'll probably want to remove the "quiet" boot option too. – James Henstridge Apr 4 '11 at 4:14
This worked. I wanted the kernel startup messages too, so by removing the "quiet" option too, it did what I want it to do. :) – The Lord of Time Apr 4 '11 at 4:52
And possibly uncomment line GRUB_TERMINAL="console" – Poma yesterday

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