1

When booting Ubuntu Server 14.04 LTS, I see messages such as:

* Starting load fallback graphics devices [FAIL]

and

init: plymouth-upstart-bridge main process terminated with status 1

and

init: plymouth-upstart-bridge main process ended, respawning

I'm running Linux version 3.13.0-32-generic in a VMware ESXi 5.1.0 virtual machine, and have no need for DRM, a graphical splash screen, kernel mode setting, Plymouth, Wayland or X-Windows. A text console is fine by me. I would remove Plymouth if I could, but there are too many dependencies in the way.

1 Answers1

2

After obtaining additional information in the comments, adding "quiet" to the grub options resolved the problem.

On a server, use nano or vi(m) to edit /etc/default/grub

sudo nano /etc/default/grub

Look for the GRUB_CMDLINE_LINUX_DEFAULT line

add quiet at the end of the option, in this case

GRUB_CMDLINE_LINUX_DEFAULT="ro noplymouth quiet"

Next, update grub

sudo update-grub

For additional information, See How do I add a kernel boot parameter?

Panther
  • 102,067
  • a downvote after many months after converting a comment to an answer, really ? Not that I need the reputation, but I have to say that is petty. – Panther Nov 12 '14 at 12:55