0

I want to see all everything in booting like what is being loaded and all instead of grub purple Interface.. So is there any way to enable text kind of mode and disable that purple screen ??

Sukupa91
  • 3,037
  • 2
  • 20
  • 33

1 Answers1

2

Permanent

Type sudo gedit /etc/default/grub. Look for the line that reads:

GRUB_CMDLINE_LINUX_DEFAULT="vesafb.invalid=1 splash quiet"

remove the splash quiet part (yours might be different, so don't change anything but that). Save the file.

Now type sudo update-grub. Reboot, no more purple screen.

Temporal (one time)

In the boot menu, press E. Look at the end of the line starting with linux for splash quiet. Remove splash quiet (do not touch anything else) press Ctrl + X. No purple screen.

Braiam
  • 67,791
  • 32
  • 179
  • 269