Forked from intrd/tutorial_kali_autologin_afterupdate.txt
Created
November 2, 2019 12:23
-
-
Save pawiromitchel/1d51ec0de40618c9887a4b3a7a1dd508 to your computer and use it in GitHub Desktop.
Kali light xfce4 root autologin (works after lightdm update)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
## Kali light xfce4 root autologin (works after lightdm update) | |
# @author intrd - http://dann.com.br/ | |
# @license Creative Commons Attribution-ShareAlike 4.0 International License - http://creativecommons.org/licenses/by-sa/4.0/ | |
After lighdtdm update root autologin is broken fix doing this: | |
nano /etc/lightdm/lightdm.conf | |
at [Seat:*] group uncomment/edit: | |
autologin-user=root | |
autologin-user-timeout=0 | |
now.. | |
nano /etc/pam.d/lightdm-autologin | |
change: | |
auth required pam_succeed_if.so user != root quiet_success | |
to: | |
auth required pam_succeed_if.so user != anything quiet_success | |
all done! :) | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment