An upcoming California law requires operating system providers to enforce basic mandatory age verification
An upcoming California law requires operating system providers to enforce basic mandatory age verification
Apparently this will include Linux…
lol no it won’t. what are they gonna do, go around the world knocking on doors asking open source devs to include age verification in their Linux distros? the law is completely unenforceable.
If you are a registered entity (even non-profit), you can be fined millions of dollars.
It is a very dumb law.
that’s great. hey, why don’t you ask the UK how fining foreign entities millions of dollars for not doing age verification is working out for them.
you see, laws only apply if the state has the ability to enforce them using violence. california does not have that ability outside of california. california can chew the bark off my big fat log for all I give a shit about the laws there.
In essence, while the bill doesn’t seem to require the most egregious forms of age verification (face scans or similar), it does require OS providers to collect age verification of some form at the account/user creation stage—and to be able to pass a segmented version of that information to outside developers upon request.
As much as I hate this, just filling in a drop down on OS install is fine with me. This is the ideal solution. Tell your kid’s device it’s for a kid, then use the default age restrictions correctly. That’s perfectly fine to me.
Anything to avoid evil age verification services that force deanonymization through every app and service.
I disagree. This is a first step towards something far worse.
It sets up the infrastructure for getting user ages and allowing services and websites to get an attestation from the operating system. Once that system is widely used and becomes ingrained, they can create a follow-up bill that demands the attestation be cryptographically verifiable by a trusted party.
In that scenario, the only way the operating system’s promise that you’re not a minor would be trusted is if it was signed by whoever holds the private keys—and that’s definitely not going to be you, the device owner.
It would either be the government, or more likely, the operating system vendor. In the former case, now services can cryptographically prove that you’re a resident of $state in $country, which is amazing for fingerprinting and terrible for anonymity. In the latter case, you can guarantee that only the corporations will be holding the key (like with Microsoft and secure boot), and you can kiss goodbye to your ability to access services on FOSS operating systems like Linux or custom Android ROMs.
So this is basically just misinformation. There is no age or identity verification as part of this bill, the age is self-reported by the user and you could select any age you want. The bill requires the operating system to have users select their age when creating an account. The intention is that parents will select their child’s age when setting up their child’s accounts on phones and computers, to age-gate them from accessing certain software or websites.
Regardless, I don’t support this feature being mandatory, because it limits parents’ choices. It is the parents’ responsibility to monitor and regulate their childs’ computer activity. Parents should be able to choose to disable this feature entirely or allow their children to use an OS that does not include this feature, if that is what they feel is appropriate for their child.
Software would ask the OS for the age range of the user (under 13, 13-15, 16-17, 18+). The software would implement content filters based on these age ranges.
The OS is only responsible for requiring the user to set an age and providing the age range to software.
Anything but giving parents/users responsibility.
Sudo su root!
Sudo su root now!
I’m giving root to my kids if and when I feel like they can handle it.
This literally IS putting the responsibility on parents.
The law requires that part of “account setup” includes asking the user’s age bracket, and then allowing apps installed via “stores” to retrieve that value from the OS. The entire burden of trust in this implementation is placed on the owner of the hardware, exactly where it should be.
Windows is still unbeaten for gaming though.
Beg to differ on that one. Performance for me has been better on Linux for a few years now. Last year when I bought a completely new PC, I just didn’t even bother to move over my Windows drive. Literally no use for it. Any game that doesn’t run on Linux isn’t worth playing IMO, if I need to use Windows. The game might as well come with a Windows install at that point lol.
Hey, thanks for the info on BSD! ❤️
I don’t get how this can work practically. Say if I install Arch, right. At which point during the process of entering a bunch of commands when following the installation guide would I be entering my age? And what software would be mandatory to install to enforce blocking content based on my age? pacstrap would need to like, read some file with my age, then install whatever needed based on that?
This makes no sense to me, but maybe I’m missing something.
They’ll just do it everywhere else.
I can’t imagine this will get traction in the EU where I am. Sometimes the decisions made here are actually thought through lol.
Cannot legally use BSD in Berkeley?
Wait. What?
Thanks. I know.
Just amusing irony worth pointing out.
Pedantically, I should have used “wont be able” to future-tense it.
Anyway, I’m ready already, with a script to add to any of my distro-respins:
#!/usr/bin/env fish read -P "Are you old enough? (yes/no) " input if test "$input" = "yes" -o "$input" = "Yes" ; echo "Proceeding..." else ; echo "You are not old enough. Exiting." ; exit 1 ; end;)