Ubuntu – Ubuntu server 16.04 won’t boot after installation

16.04bootserver

I've just installed ubuntu server 16.04 but it won't boot.
Here's the only thing I get on screen:

lvmetad is not active yet; using direct activation during sysinit

lvmetad is not active yet; using direct activation during sysinit

/dev/mapper/server–vg-root: clean xxx/xxx files, xxx/xxx blocks

"xxx" are some large numbers
I can't even use the command line so I'm stucked. Any ideas?

Best Answer

I managed to resolve this for my machines by adjusting the grub configuration like so:

In /etc/default/grub, change:

GRUB_CMDLINE_LINUX_DEFAULT="quiet splash" to GRUB_CMDLINE_LINUX_DEFAULT="nomodeset" Then add this line:

GRUB_TERMINAL_INPUT="console serial" Run sudo update-grub and reboot for the changes to take effect.

Related Question