I just upgraded my distribution to 19.04 – things apparently went well except I got a message that 'install-info' couldn't be updated. This message I have ignored so far. It seemed OK until I restarted the system and tried to log in. Now it won't accept my password any more and after maybe 10 seconds I end up at the login question again. And again. I know the password is still there, since logging in via ssh from another computer works like a charm. It is also NOT a capslock problem, I have tried enough times to eliminate that. Since I have an ssh connection, I can reproduce any log or system files if someone asks me.
But I'm flabbergasted - what on earth is the problem here? I have always upgraded as soon as a new Ubuntu has been out, but this is the first time I experience problems with it.
A little update: I just tried to reboot the machine via the ssh connection, and now the screen just shows the ubuntu logo with the five blinking dots under it. Nothing has happened for half an hour now, so I guess it's really stuck there. Seems serious this - is there anyone here who understands and possibly can assist me a bit?
Update again 13may19! I just upgraded my third (old-ish) laptop to Ubuntu 19.04, and couldn't log in there either. A bit of research showed that the problem was incompatible Gnome shell extensions. I insist on the Gnome shell (gives me the desktop I want), and disabling these extensions one-by-one finally gave me a working system. Learning? Yes indeed! This was a long process, and I'm happy I'm finally there!
sudo dpkg --configure -a
to make sure that upgrade was not interrupted. Also please add output from these commands to your question:sudo apt update && sudo apt list --upgradable`` and
lspci -v | grep VGA` – Comar May 03 '19 at 23:28code
Sat 11:54 bernt@sara: ~$ sudo apt update && sudo apt list --upgradable [...] All packages are up-to-date. Listing... Done
– Bernt Ribbum May 04 '19 at 10:11code
Sat 11:56 bernt@sara: ~$ lspci -v | grep VGA 00:02.0 VGA compatible controller: Intel Corporation Iris Graphics 550 (rev 0a) (prog-if 00 [VGA controller])sudo dmidecode -s bios-version
will tell you what yours is. Then you can go check if there's a newer one. Don't give up quite yet :-) – heynnema May 04 '19 at 22:48