Hi everyone,
today I turned my computer on as usual, but when the login screen appeared the computer freezed and then the login screen disappeared again, left me with just a cursor. X11 logs shows nothing interasting. Any suggestions?
Given KDE Plasma 5 and SDDM, please take a look in the “/tmp/” system directory; the contents of your personal “~/.cache/” have absolutely nothing to do with the «system» SDDM login screen …
Unfortunately, currently, the “sddm-auth” socket isn’t properly released when the system is shut down.
Do you have a large number of old, out-of-date, unused “sddm-auth” sockets in the system’s “/tmp/” directory?
If that’s the case, you can safely delete all of the out-of-date “sddm-auth” sockets; it may be that, there’s a “sddm-auth” socket from a previous session which has an ID (the long hexadecimal string with a value such as «920ed8c-1d7a-4773-88f1-96d26294d13f») which is the same as the ID value SDDM wants to use for the system’s current session; therefore the SDDM crash …
I currently deal with this issue by placing a cron file in the system “/etc/cron.d/” directory with protections and content as follows:
# ls -l /etc/cron.d/«A file name which is absolutely not interesting»
-rw------- 1 root root 143 24. Apr 17:18 /etc/cron.d/«A file name which is absolutely not interesting»
#
# cat /etc/cron.d/«A file name which is absolutely not interesting»
#
# No e-Mail
MAILTO=""
#
@reboot root /usr/bin/find /tmp/ -daystart -type s -atime +0 -iname 'sddm-auth*' -ls -exec /usr/bin/unlink '{}' \;
#
#