13

After install Lubuntu 16.04 show the following message during the boot:

lvmetad is not active yet; using direct activation during sysinit
/dev/mapper/lubuntu--vg-root: clean, 121574/7168000 files, 1115621/2865544 blocks

I wait 1 hour but don't show the login screen.

I can login using Crtl+alt+F2, return "Welcome to Ubuntu 16.04 LTS" in a screen like terminal... but I dont know how continue to can use the computer or fix the problem... Some suggestion?

Severus Tux
  • 10,126

1 Answers1

1

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.

dufte
  • 14,198
  • 5
  • 41
  • 43
Kyle
  • 90