1

The update from 13.10 to 14.04 using do-release-upgrade seems to have added lightdm to my computer. On top of that, lightdm wasn’t even set up properly, nor do I want it set up. I prefer not to use graphical login, and to start with server edition and install only things I want on my desktop, just out of preference.

I got to a console and tried apt-get removing lightdm, which made gdm install. Attempting to remove gdm tries to make kdm install and nvidia-prime remove. How do I get things back to the way they were before? I’ve upgraded three times before this without problem.

1 Answers1

0

Checking common important reverse dependencies (dependents) of lightdm, gdm & kdm, using:

apt-cache -i rdepends lightdm | tail -n +3 | sort
apt-cache -i rdepends gdm | tail -n +3 | sort
apt-cache -i rdepends kdm | tail -n +3 | sort

It seems the common one is nvidia-prime.

$ apt-cache depends nvidia-prime
nvidia-prime
 |Depends: lightdm
 |Depends: gdm
  Depends: kdm
  Depends: upstart
    upstart:i386
  Depends: bbswitch-dkms
  Depends: pciutils
    pciutils:i386
  Depends: lsb-release
 |Depends: sysv-rc
  Depends: <file-rc>
  Conflicts: <hybrid-graphics>
  Conflicts: <hybrid-graphics:i386>
  Breaks: ubuntu-drivers-common
  Breaks: ubuntu-drivers-common:i386
  Replaces: <hybrid-graphics>
    nvidia-prime
  Replaces: <hybrid-graphics:i386>
    nvidia-prime:i386
  Conflicts: nvidia-prime:i386

nvidia-prime need at least one of lightdm, gdm or kdm. See How do I boot into true text mode? to boot without GUI. Also you may disable lightdm/gdm/kdm services, but not sure if nvidia-prime tools will work, try it.

user.dz
  • 49,176