After the newest upgrade my user account is set to be a system account, which removes it from the GNOME login screen. I had to create a new dummy user, because the system thought there are no user accounts on my system. After that I used the “Your name not listed here?” function of the login screen to login with my old account, which worked as it should.
However, ideally I’d want my account to show up on the login screen again. I tried to edit /var/lib/AccountsService/users/MY_USER_NAME and set SystemAccount=false, but the changes had no effect and were wiped after a reboot. How can I restore the status of “User account” for my old account?
We need someone with Silverblue to verify whether that is correct or not.
On Fedora Workstation I don’t have altfiles, and there’s /bin/bash instead of ELF.
I have exactly the same issue but so far I did not find a solution. At the moment I have need to type my username when I try to login.
org.freedesktop.Accounts.User also tells me that my account is set to SystemAccount=true and LocalAccount=false but I don’t know how to change this.
changing SystemAccount in /var/lib/AccountsService/users/MY_USER_NAME seem to be resettet after a reboot
I had this same issue on Silverblue 32 when switching my shell to zsh.
Switched the shell with:
sudo lchsh {USER}
and at first typed zsh.
This lead to being added to the System Account true in /var/lib/AccountsService/users/MY_USER_NAME
I had to create another user to get the visual login working again.
Experimented with this a bit and found that one should make sure to change the shell to /bin/{SHELL} instead of just {SHELL}.
The whole sequence was then:
sudo lchsh {USER}
And then type:
/bin/zsh
When prompted.
Before I rebooted I also removed the line SystemAccount=true by
vim /var/lib/AccountsService/users/MY_USER_NAME
Removing the line and :wq
After a systemctl reboot my account appeared as normal and I was not readded to /var/lib/AccountsService/users/MY_USER_NAME as SystemAccount=true (the line remains not added to the file).
Hopefully this helps someone with the same issue I had.