1

How do I edit the GRUB boot sequence from:

linux /boot/vmlinuz... quiet splash

so that it boots to the console? I've tried removing "quiet" and "splash", as well as adding "text". I can also boot to rescue mode, or edit the boot sequence.

Else booting hangs at the splash screen.

Thufir
  • 4,631

1 Answers1

2

To start without the display manager edit the file /boot/grub/grub.cfg. Look for the default menuentry (usually the first line beginning with menuentry 'Ubuntu' and some lines later append 3 to the line starting your kernel:

linux   /boot/vmlinuz-4.13.0-38-generic.efi.signed root=UUID=3fbf407e-3505-42c7-82a7-7aceef817bcc ro 3

To start the display manager later on do

sudo init 5
muclux
  • 5,324