1

I installed KDE to see if it's better than Unity. I didn't like it, so I uninstalled it, but now, when I boot in Ubuntu, it just goes to command line, asking for a user and password. How can I get it to the "default" state that used the Unity GUI?

  • Kubuntu has its own display manager KDM. Ubuntu uses Lightdm as its sdisplay manager. It seems that your system doesn't know anymore that it has to use Lightdm as its display manager. –  Nov 08 '13 at 00:58
  • see the answers on : http://askubuntu.com/questions/278762/ubuntu-12-04-login-returns-to-login –  Nov 08 '13 at 01:02

1 Answers1

1

Try this at cli after login,

sudo service lightdm start

If it solves your issues. Open a terminal to edit the file /etc/X11/default-display-manager as

sudo gedit /etc/X11/default-display-manager

Add the following line there,

/usr/bin/lightdm

or

/usr/sbin/lightdm

after this lightdm should start normally on reboot and bring you to the logon screen as usual.

sourav c.
  • 44,715