Autologin in Debian
Details- Details
- Category: Debian
- Hits: 4879
To enable auto-login on debian, you need to edit / etc/gdm3/daemon.conf. You can use the text editor nano:
write to the terminal
nano / etc/gdm3/daemon.conf
and look for the following lines, most likely they will have you commented
[daemon]
# AutomaticLoginEnable = false
# AutomaticLogin = user
AutomaticLoginEnable - includes Autologin
AutomaticLogin - the name by which you want to enter
Remove the grid and edit records
[daemon]
AutomaticLoginEnable = true
AutomaticLogin = Ivan (you specify the name of a user)
Reboot and see the result.