0

I am using Ubuntu 14.04, and I installed the MATE desktop to try it out. I did not like it, so I removed it. Now my login screen is terrible. I don't know how to restore the login screen to the original Unity login screen.

3 Answers3

0

You can try re-installing the ubuntu desktop packages and unity, then rebooting.

sudo apt-get update
sudo apt-get install --reinstall ubuntu-desktop
sudo apt-get install --reinstall unity
Kenan
  • 36
0

First make sure lightdm is installed: sudo apt-get install lightdm

Then reconfigure login manager: sudo dpkg-reconfigure lightdm Check if it has worked. Usually it is enough.

Also see the links: Reset to Default Unity Login

How to restore Ubuntu login screen after lubuntu install?

Muzaffar
  • 5,677
0

Test this:

Switch on your computer.

Press and hold the Shift key, which will bring up the Grub menu.

Select the line which starts with --- Advanced options.

Select the line ending with --- Recovery mode.

After a few moments, your computer should display a menu with a number of options.

Select ---- Network and ---- Drop to root shell prompt.

In a terminal run it:

sudo -i
mount -o remount,rw /
mount --all
apt-get update
apt-get install --reinstall aptitude deborphan

aptitude remove '?and(?reverse-depends(mate),?not(?reverse-depends(?exact-name(ubuntu-desktop))))'

apt-get install --reinstall ubuntu-desktop
apt-get dist-upgrade
deborphan
apt-get --purge remove $(deborphan)
deborphan --libdevel
apt-get --purge remove $(deborphan --libdevel)
deborphan --find-config
dpkg --purge $(deborphan --find-config)
apt-get autoremove
apt-get clean
reboot
kyodake
  • 17,808