14

I wanted to know if it is possible to disable the splashscreen at boot. The one where is says Ubuntu and it has the orange dots moving. I want to remove that and be able to see the commands like what you can see when it shuts down like stopping devices and stuff. Anyway this is is possible? Thanks!

Seth
  • 58,122
user49191
  • 143

2 Answers2

21

Edit grub, paste this at a terminal: gksu gedit /etc/default/grub

Look for the line

GRUB_CMDLINE_LINUX_DEFAULT="quiet splash"

and change it to

GRUB_CMDLINE_LINUX_DEFAULT=""

save.

Then at terminal paste this:

sudo update-grub
A.B.
  • 90,397
desgua
  • 32,917
2

I've been working on this exact problem all day...
Ubuntu Server 12.04.03 LTS amd64 on a dual NIC, dual core Intel Atom with the N2000 graphics chipset. Had to blacklist the gma500_gfx driver to get video at all, and then on to seeing the boot up...

Editing the kernel parameters in /etc/default/grub to:
GRUB_CMDLINE_LINUX_DEFAULT=""
did not work for me. The splash screen went away but the screen stayed blank.

Adding this to /etc/default/grub worked for me:
GRUB_GFXPAYLOAD_LINUX=text

Krista K
  • 343