How do I disable the boot splash screen, and only show kernel and boot text instead? [duplicate]

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?

I am not asking to disable X and get to text-only login, I"m asking how to deactivate the "Ubuntu" loading screen with the dots, so that I can see text output from the boot process - processes being started, kernel messages, etc. When I wrote this question I was not asking how to disable X altogether, only the boot splash screen.


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

Here's what it looks like by default:

GRUB_CMDLINE_LINUX_DEFAULT="quiet splash"

Make it look like this:

GRUB_CMDLINE_LINUX_DEFAULT=""

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.