I have selected the setting 'Automatic Login' from within the default Gnome 3 Ubuntu 17.10 control panel app, but it keeps resetting to 'off' after every restart and does not allow me to automatically login.
Any ideas?
I have selected the setting 'Automatic Login' from within the default Gnome 3 Ubuntu 17.10 control panel app, but it keeps resetting to 'off' after every restart and does not allow me to automatically login.
Any ideas?
I had to force the loging screen to use xorg and not wayland (not yet supported by nvidia drivers).
Edit as root the file /etc/gdm3/custom.conf.
sudo nano /etc/gdm3/custom.conf
Change the line
#WaylandEnable=false
to
WaylandEnable=false
Same issue. I've originally changed the "/etc/gdm3/custom.conf" and simply enabled the "AutomaticLoginEnable=True". This was the whole issue: I didn't notice that "True" has to be lowercase.
EDIT: I was wrong. My autologin works because I'm NOT using the gnome-xorg (the default option for ubuntu) but the gnome classic session. I can't manage to get the gnome-xorg session to work properly unless I setup a timedlogin which is a little unpleasant.
EDIT 2: Ok, I finally got enough of this issue, since it's getting ignored. To solve my issue, since I don't care the least about gdm but I still want to use chrome, I've installed lightdm and changed the autologin in the user settings.
In other words:
sudo apt install lightdm
followed by the usual change in the user settings for the autologin.
I think i've found the problem, try to edit /etc/gdm3/custom.conf and write AutomaticLoginEnable=true instead of AutomaticLoginEnable=True in my case
(full lowercase for the word "true")
or uncomment this line if it is...
/etc/gdm3/custom.confis already "AutomaticLoginEnable=true" but it was commented. I just uncommented it. – Redbob Oct 24 '17 at 11:58 true. But, switching in Details > Users panel, it turns Trueand False. Even changing Trueto true, autologin didn't work. – Redbob Nov 6 '17 at 1:32 I can confirm that it's a bug in Settings app. When changing the 'Automatic Login' flag under Details->Users it writes True/False values for AutomaticLoginEnable in "/etc/gdm3/custom.conf". After manually writing the value AutomaticLoginEnable=true the auto-login works.
AutomaticLoginEnable and AutomaticLogin with username. The Settings app writes both variables, but the bug is that it writes True/False with capital letters. – Julius Nov 4 '17 at 22:06 trueor True, the result is the same: nothing works. These two statements are present in /etc/gdm3/custom.conf: AutomaticLoginEnable and AutomaticLogin – Redbob Nov 6 '17 at 1:28 I had to set two variables, to make it work:
$sudo gedit /etc/gdm3/custom.conf
And insert the lines:
AutomaticLoginEnable = true
AutomaticLogin = <my user name>
The settings app is buggy, to an extend where it's getting useless as of 11.2017. Hopefuly that will change :)
/etc/gdm3/custom.confalso note that the setting in Settings > Details > Users acts like a cover, i.e. whatever you uncover is enabled, what you cover up is disabled. – doug Oct 23 '17 at 2:30custom.conf– elect Oct 23 '17 at 7:32