3

Since I got my Ubuntu 23.10 installed the login screen text box stays on the left, whereas I believe it should be in the center of the screen. Here is a picture of my login screen:

login screen showing text box on the left side

I don't know if this is normal but any help with this would be amazing.

1
  • 2
    Are you sure that's the default gdm3, not the old lightdm?
    – Daniel T
    Commented Feb 8 at 10:54

2 Answers 2

4

You are most likely using LightDM (lightdm package) as your login manager (as @Daniel T said) instead of the default GDM (gdm3 package). I suppose that you ended up with LightDM either because you didn't do a clean install, rather you upgraded from another installation where you had lightdm installed, or because you followed some guide to configure your system and you installed lightdm without noticing.

To remove lightdm and replace it with gdm3 run the following commands in a terminal:

sudo apt install gdm3
sudo dpkg-reconfigure gdm3
systemctl stop lightdm
sudo apt remove lightdm
systemctl start gdm3
0
3

You should not see that outdated lightdm login screen. Let's make sure you're using the new gdm3 login manager, which is also needed for your lock screen to work:

  1. Install the correct login screen and desktop:

    sudo apt install gdm3 ubuntu-desktop
    
  2. Remove all other providers of x-display-manager:

    sudo apt purge xdm wdm slim sddm nodm lxdm lightdm greetd
    
  3. When lightdm is removed, you might see a dialog in the terminal asking you to select the display manager. Select gdm3.

  4. Reboot.

I only remember seeing lightdm 10 years ago. See @BeastOfCaerbannog's answer for how this could have happened to you.

0

You must log in to answer this question.

Not the answer you're looking for? Browse other questions tagged .