[ Linux ] 设置开机自动登录
https://www.cnblogs.com/yeungchie/
查看桌面环境
file -L /etc/systemd/system/display-manager.service
GNOME Display Manager
修改 /etc/gdm/custom.conf 文件。
开机自动登录
[daemon]
AutomaticLoginEnable=true
AutomaticLogin=yeung
上面设置开机自动登录 yeung 账户。
开机延迟自动登录
[daemon]
TimedLoginEnable=true
TimedLoginDelaty=30
TimedLogin=yeung
上面设置开机延迟 30s 后自动登录 yeung 账户。
Light Display Manager
修改 /etc/lightdm/lightdm.conf 文件。
[Seat:*]
autologin-guest=false
autologin-user-timeout=0
autologin-user=yeung
注意 autologin-guest 是设置为
false
,autologin-user-timeout 控制开机延迟自动登录的时间,单位秒。