PDA

View Full Version : [ubuntu] Disable Grub2 splash screen



nibal
March 13th, 2013, 12:40 PM
I am in the long process of customizing and breaking a perfectly good, working Ubuntu installation. Hoping for some help in this pursuit.

After booting, grub will blank the screen, put up a short progress bar and end up in a login shell. Yes I am booting to a console in init 3.:)
I would like to see those booting messages in real time instead of these splashes. How can i disable those screens?

TIA
Nikos

slickymaster
March 13th, 2013, 01:34 PM
If you want to disable Grub2 splash scrren, just edit /etc/default/grub
Run:

gksudo geany /etc/default/grub
and remove the "quiet splash" from the linux command line.
After this run:

sudo update-grub2

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

In addition to this, if you want to see the kernel startup messages you'll probably want to remove the "quiet" boot option too.

nibal
March 13th, 2013, 02:03 PM
@slickymaster:
> In addition to this, if you want to see the kernel startup messages you'll probably want to remove the "quiet" boot option too.

Where is that "quiet" boot option you mention?

Nikos

slickymaster
March 13th, 2013, 04:17 PM
I apologize for not being completely clear in my previous post. What I meant to say is that the presence of the word splash in the
GRUB_CMDLINE_LINUX_DEFAULT entry, enables the splash screen, with condensed text output. Adding quiet as well, results in just the splash screen, which is the default for the desktop edition since 10.04 (Lucid Lynx). In order to enable the "normal" text start up, you would remove both of these.

nibal
March 13th, 2013, 04:27 PM
I apologize for not being completely clear in my previous post. What I meant to say is that the presence of the word splash in the
GRUB_CMDLINE_LINUX_DEFAULT entry, enables the splash screen, with condensed text output. Adding quiet as well, results in just the splash screen, which is the default for the desktop edition since 10.04 (Lucid Lynx). In order to enable the "normal" text start up, you would remove both of these.

That's what i did in the first place. Unfortunately it didn't work as expected. The only thing removed was the Ubuntu Progress Bar, that lasted only 1 sec, anyway. Between that and the grub boot menu, there is a good ~20" that are blanked by a pink screen with nothing on it. This is mostly what I want to get rid off. Any clues?

TIA
Nikos

slickymaster
March 13th, 2013, 04:52 PM
See if this (http://ubuntuforums.org/showthread.php?t=1958162&p=11842047&viewfull=1#post11842047) can anyhow be of help.

nibal
March 14th, 2013, 01:25 AM
@slickymaster:
> See if this (http://ubuntuforums.org/showthread.php?t=1958162&p=11842047&viewfull=1#post11842047) can anyhow be of help.

No, unfortunately, this won't do it either. It simply uses themes to replace pink background with a black. I have no problems with pink, especially now that I have replaced it with an image.;)
I just need to get the kernel boot messages underneath.

Thanks,
Nikos

cldunlap
May 10th, 2013, 08:11 PM
If you want to disable Grub2 splash scrren, just edit /etc/default/grub
Run:

gksudo geany /etc/default/grub
and remove the "quiet splash" from the linux command line.
After this run:

sudo update-grub2

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

In addition to this, if you want to see the kernel startup messages you'll probably want to remove the "quiet" boot option too.

---
It was mentioned to 'Make sure you don't have plymouth-theme-ubuntu-text package installed', could this be explained a bit more? I would like to understand this a little better (before I remove it).

Thanks!

slickymaster
May 10th, 2013, 10:32 PM
plymouth-theme-ubuntu-text is a binary package in Ubuntu. Plymouth is an application that runs very early in the boot process, even before the root filesystem is mounted, that provides a graphical boot animation while the boot process happens in the background..
This package contains the default ubuntu-text text theme used when no support for a graphical theme is found on your system.