How do I enable auto-login in Mint 18?

Clash Royale CLAN TAG#URR8PPP
up vote
3
down vote
favorite
Mint 18.2 64b
Cinnamon 3.4.3
This is running in a VM on my machine so I'm not worried about login security. I've been looking around on the Mint forums and only found a lot of threads about troubleshooting problems with autologin.
The setting is not in the Login Window settings screen.
The setting is not in the Users and Groups settings screen.
Where is this setting located now?
linux-mint users login
add a comment |Â
up vote
3
down vote
favorite
Mint 18.2 64b
Cinnamon 3.4.3
This is running in a VM on my machine so I'm not worried about login security. I've been looking around on the Mint forums and only found a lot of threads about troubleshooting problems with autologin.
The setting is not in the Login Window settings screen.
The setting is not in the Users and Groups settings screen.
Where is this setting located now?
linux-mint users login
1
cat /etc/X11/default-display-manager
â user192526
Jul 26 '17 at 6:04
/usr/sbin/lightdm
â jcollum
Jul 26 '17 at 14:21
1
Not sure if it works like in xenial. Create the file/etc/lightdm/lightdm.conf.d/lightdm.confwith following content.[Seat:*] autologin-user = your_username
â user192526
Jul 26 '17 at 15:18
add a comment |Â
up vote
3
down vote
favorite
up vote
3
down vote
favorite
Mint 18.2 64b
Cinnamon 3.4.3
This is running in a VM on my machine so I'm not worried about login security. I've been looking around on the Mint forums and only found a lot of threads about troubleshooting problems with autologin.
The setting is not in the Login Window settings screen.
The setting is not in the Users and Groups settings screen.
Where is this setting located now?
linux-mint users login
Mint 18.2 64b
Cinnamon 3.4.3
This is running in a VM on my machine so I'm not worried about login security. I've been looking around on the Mint forums and only found a lot of threads about troubleshooting problems with autologin.
The setting is not in the Login Window settings screen.
The setting is not in the Users and Groups settings screen.
Where is this setting located now?
linux-mint users login
linux-mint users login
asked Jul 25 '17 at 19:24
jcollum
4201514
4201514
1
cat /etc/X11/default-display-manager
â user192526
Jul 26 '17 at 6:04
/usr/sbin/lightdm
â jcollum
Jul 26 '17 at 14:21
1
Not sure if it works like in xenial. Create the file/etc/lightdm/lightdm.conf.d/lightdm.confwith following content.[Seat:*] autologin-user = your_username
â user192526
Jul 26 '17 at 15:18
add a comment |Â
1
cat /etc/X11/default-display-manager
â user192526
Jul 26 '17 at 6:04
/usr/sbin/lightdm
â jcollum
Jul 26 '17 at 14:21
1
Not sure if it works like in xenial. Create the file/etc/lightdm/lightdm.conf.d/lightdm.confwith following content.[Seat:*] autologin-user = your_username
â user192526
Jul 26 '17 at 15:18
1
1
cat /etc/X11/default-display-managerâ user192526
Jul 26 '17 at 6:04
cat /etc/X11/default-display-managerâ user192526
Jul 26 '17 at 6:04
/usr/sbin/lightdm
â jcollum
Jul 26 '17 at 14:21
/usr/sbin/lightdm
â jcollum
Jul 26 '17 at 14:21
1
1
Not sure if it works like in xenial. Create the file
/etc/lightdm/lightdm.conf.d/lightdm.conf with following content. [Seat:*] autologin-user = your_usernameâ user192526
Jul 26 '17 at 15:18
Not sure if it works like in xenial. Create the file
/etc/lightdm/lightdm.conf.d/lightdm.conf with following content. [Seat:*] autologin-user = your_usernameâ user192526
Jul 26 '17 at 15:18
add a comment |Â
3 Answers
3
active
oldest
votes
up vote
4
down vote
accepted
It seems there isn't a GUI setting for auto-login, except during initial installation.
Bahamut already pointed to the right solution. When look at the file: /etc/X11/default-display-manager, it points to the lightdm.
Then for Mint 18.2 (Cinnamon), the correct config file for lightdm is:/etc/lightdm/lightdm.conf.
The contents of the file could contain multiple settings:
[Seat:*]
autologin-guest=false
autologin-enable=true
autologin-user=USERNAME
autologin-user-timeout=0
allow-guest=false
- Where
USERNAMEis your username, that should be auto-logged-in. autologin-enable=true- this line was added for Linux MATE 18.3 64bit, but not tested for 18.2 Cinnamon. Remove it if necessary...
PS: Even it's too late to help the OP, it could be of help for other people. Let me know if someone can't get it working.
Hey thanks for answering. Since you're the only one, you get the check.
â jcollum
Nov 16 '17 at 16:27
add a comment |Â
up vote
2
down vote
Linux Mint 18.3 Cinnamon:
I did not have that /etc/lightdm/lightdm.conf at all. Instead, I appended code suggested by "Minister" here:
sudoedit /etc/lightdm/lightdm.conf.d/70-linuxmint.conf
and it works.
add a comment |Â
up vote
1
down vote
I am a NOOB and have been looking for the same answer for Mint 19. I found the following and hope that the answer helps others.
Menu-Preferences-System Settings-Login Window--Users Tab-Username---Enter username
Save and reboot
New contributor
Keith Baston is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
add a comment |Â
3 Answers
3
active
oldest
votes
3 Answers
3
active
oldest
votes
active
oldest
votes
active
oldest
votes
up vote
4
down vote
accepted
It seems there isn't a GUI setting for auto-login, except during initial installation.
Bahamut already pointed to the right solution. When look at the file: /etc/X11/default-display-manager, it points to the lightdm.
Then for Mint 18.2 (Cinnamon), the correct config file for lightdm is:/etc/lightdm/lightdm.conf.
The contents of the file could contain multiple settings:
[Seat:*]
autologin-guest=false
autologin-enable=true
autologin-user=USERNAME
autologin-user-timeout=0
allow-guest=false
- Where
USERNAMEis your username, that should be auto-logged-in. autologin-enable=true- this line was added for Linux MATE 18.3 64bit, but not tested for 18.2 Cinnamon. Remove it if necessary...
PS: Even it's too late to help the OP, it could be of help for other people. Let me know if someone can't get it working.
Hey thanks for answering. Since you're the only one, you get the check.
â jcollum
Nov 16 '17 at 16:27
add a comment |Â
up vote
4
down vote
accepted
It seems there isn't a GUI setting for auto-login, except during initial installation.
Bahamut already pointed to the right solution. When look at the file: /etc/X11/default-display-manager, it points to the lightdm.
Then for Mint 18.2 (Cinnamon), the correct config file for lightdm is:/etc/lightdm/lightdm.conf.
The contents of the file could contain multiple settings:
[Seat:*]
autologin-guest=false
autologin-enable=true
autologin-user=USERNAME
autologin-user-timeout=0
allow-guest=false
- Where
USERNAMEis your username, that should be auto-logged-in. autologin-enable=true- this line was added for Linux MATE 18.3 64bit, but not tested for 18.2 Cinnamon. Remove it if necessary...
PS: Even it's too late to help the OP, it could be of help for other people. Let me know if someone can't get it working.
Hey thanks for answering. Since you're the only one, you get the check.
â jcollum
Nov 16 '17 at 16:27
add a comment |Â
up vote
4
down vote
accepted
up vote
4
down vote
accepted
It seems there isn't a GUI setting for auto-login, except during initial installation.
Bahamut already pointed to the right solution. When look at the file: /etc/X11/default-display-manager, it points to the lightdm.
Then for Mint 18.2 (Cinnamon), the correct config file for lightdm is:/etc/lightdm/lightdm.conf.
The contents of the file could contain multiple settings:
[Seat:*]
autologin-guest=false
autologin-enable=true
autologin-user=USERNAME
autologin-user-timeout=0
allow-guest=false
- Where
USERNAMEis your username, that should be auto-logged-in. autologin-enable=true- this line was added for Linux MATE 18.3 64bit, but not tested for 18.2 Cinnamon. Remove it if necessary...
PS: Even it's too late to help the OP, it could be of help for other people. Let me know if someone can't get it working.
It seems there isn't a GUI setting for auto-login, except during initial installation.
Bahamut already pointed to the right solution. When look at the file: /etc/X11/default-display-manager, it points to the lightdm.
Then for Mint 18.2 (Cinnamon), the correct config file for lightdm is:/etc/lightdm/lightdm.conf.
The contents of the file could contain multiple settings:
[Seat:*]
autologin-guest=false
autologin-enable=true
autologin-user=USERNAME
autologin-user-timeout=0
allow-guest=false
- Where
USERNAMEis your username, that should be auto-logged-in. autologin-enable=true- this line was added for Linux MATE 18.3 64bit, but not tested for 18.2 Cinnamon. Remove it if necessary...
PS: Even it's too late to help the OP, it could be of help for other people. Let me know if someone can't get it working.
edited Apr 6 at 21:58
answered Nov 14 '17 at 18:35
Minister
1565
1565
Hey thanks for answering. Since you're the only one, you get the check.
â jcollum
Nov 16 '17 at 16:27
add a comment |Â
Hey thanks for answering. Since you're the only one, you get the check.
â jcollum
Nov 16 '17 at 16:27
Hey thanks for answering. Since you're the only one, you get the check.
â jcollum
Nov 16 '17 at 16:27
Hey thanks for answering. Since you're the only one, you get the check.
â jcollum
Nov 16 '17 at 16:27
add a comment |Â
up vote
2
down vote
Linux Mint 18.3 Cinnamon:
I did not have that /etc/lightdm/lightdm.conf at all. Instead, I appended code suggested by "Minister" here:
sudoedit /etc/lightdm/lightdm.conf.d/70-linuxmint.conf
and it works.
add a comment |Â
up vote
2
down vote
Linux Mint 18.3 Cinnamon:
I did not have that /etc/lightdm/lightdm.conf at all. Instead, I appended code suggested by "Minister" here:
sudoedit /etc/lightdm/lightdm.conf.d/70-linuxmint.conf
and it works.
add a comment |Â
up vote
2
down vote
up vote
2
down vote
Linux Mint 18.3 Cinnamon:
I did not have that /etc/lightdm/lightdm.conf at all. Instead, I appended code suggested by "Minister" here:
sudoedit /etc/lightdm/lightdm.conf.d/70-linuxmint.conf
and it works.
Linux Mint 18.3 Cinnamon:
I did not have that /etc/lightdm/lightdm.conf at all. Instead, I appended code suggested by "Minister" here:
sudoedit /etc/lightdm/lightdm.conf.d/70-linuxmint.conf
and it works.
answered Mar 20 at 16:28
ajaaskel
31633
31633
add a comment |Â
add a comment |Â
up vote
1
down vote
I am a NOOB and have been looking for the same answer for Mint 19. I found the following and hope that the answer helps others.
Menu-Preferences-System Settings-Login Window--Users Tab-Username---Enter username
Save and reboot
New contributor
Keith Baston is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
add a comment |Â
up vote
1
down vote
I am a NOOB and have been looking for the same answer for Mint 19. I found the following and hope that the answer helps others.
Menu-Preferences-System Settings-Login Window--Users Tab-Username---Enter username
Save and reboot
New contributor
Keith Baston is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
add a comment |Â
up vote
1
down vote
up vote
1
down vote
I am a NOOB and have been looking for the same answer for Mint 19. I found the following and hope that the answer helps others.
Menu-Preferences-System Settings-Login Window--Users Tab-Username---Enter username
Save and reboot
New contributor
Keith Baston is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
I am a NOOB and have been looking for the same answer for Mint 19. I found the following and hope that the answer helps others.
Menu-Preferences-System Settings-Login Window--Users Tab-Username---Enter username
Save and reboot
New contributor
Keith Baston is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
New contributor
Keith Baston is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
answered 16 hours ago
Keith Baston
111
111
New contributor
Keith Baston is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
New contributor
Keith Baston is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
Keith Baston is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
add a comment |Â
add a comment |Â
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2funix.stackexchange.com%2fquestions%2f381785%2fhow-do-i-enable-auto-login-in-mint-18%23new-answer', 'question_page');
);
Post as a guest
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
1
cat /etc/X11/default-display-managerâ user192526
Jul 26 '17 at 6:04
/usr/sbin/lightdm
â jcollum
Jul 26 '17 at 14:21
1
Not sure if it works like in xenial. Create the file
/etc/lightdm/lightdm.conf.d/lightdm.confwith following content.[Seat:*] autologin-user = your_usernameâ user192526
Jul 26 '17 at 15:18