510
you are viewing a single comment's thread
view the rest of the comments
view the rest of the comments
this post was submitted on 18 Mar 2026
510 points (97.4% liked)
Linux
63789 readers
1230 users here now
From Wikipedia, the free encyclopedia
Linux is a family of open source Unix-like operating systems based on the Linux kernel, an operating system kernel first released on September 17, 1991 by Linus Torvalds. Linux is typically packaged in a Linux distribution (or distro for short).
Distributions include the Linux kernel and supporting system software and libraries, many of which are provided by the GNU Project. Many Linux distributions use the word "Linux" in their name, but the Free Software Foundation uses the name GNU/Linux to emphasize the importance of GNU software, causing some controversy.
Rules
- Posts must be relevant to operating systems running the Linux kernel. GNU/Linux or otherwise.
- No misinformation
- No NSFW content
- No hate speech, bigotry, etc
Related Communities
Community icon by Alpár-Etele Méder, licensed under CC BY 3.0
founded 6 years ago
MODERATORS
I'm a noob when it comes to deep linux stuff.
So how does this affect end users and are we at risk of leaking personal info? It looks to me they are adding a birthDate field along with other meta data. Will these metadata be sent to whatever local authorities or whatever data hoarder on the web (like Google) without user consent?
I meant what stops me from listing false info like: Name: Biggus Dickus DOB: 06/09/1969 Nationality: Spartan .....etc. ?
I usually use systemd for stuff like hibernate/suspend, e.g.
systemd suspend
and if on i3wm, I edit configs for sleep and lid close in /etc/systemd/sleep.conf
Are these affected too?.
The other user data is already stored in the userdb versions that nearly everyone who uses a systemd distro already has. You can check what data is being stored with
userdbctl. On my system that looks like this:Honestly this PR is a bit of a nothingburger. I'm not aware of any distro really using userdb to store data beyond what you'd store in
/etc/passwd(maybe Ubuntu does?). The main value of userdb seems to be as a frontend so other programs don't need dedicated code to handle/etc/passwd, LDAP, etc. Notably GNOME recently eliminated their dedicated code in favor of just using userdb.And Userdb doesn't really handle data validation at all. It enforces that you input a valid date after 1900, but that's kinda it. I guess you need root/sudo privileges to change the birthdate but that's not much of a hurdle for most Linux users.
Really this entire PR boils down to:
And this is how I find out that systemd lets a process running as a user get the crypted password of the user:
I mean, why the hell...