My gfs brother married into wealth and is now a trump supporter. He grew up in rural New England.
- 1 Post
- 373 Comments
foggy@lemmy.worldto Mildly Infuriating@lemmy.world•Pearson complaining about using Linux to access my course materialEnglish1521·14 days agoIt’s hilarious how bad it is
I won’t ramble but I’m a cybersecurity professional with a lot of certs and… I’ve played with it (Pearson VUE)
Hey Pearson, I have completely defeated your anticheat measures. Ironically, have used my expertise to pass cybersecurity exams. Fight me.
Hey OP, use a free windows VM. Guess how many monitors your VM has? Guess how many your host can have? Yeah.
This was 2019, so they may have gotten past that but I tells ya… For folks testing cybersec pros, they sure don’t have airtight opsec.
I found more, but cannot responsibly disclose 😊
foggy@lemmy.worldto Selfhosted@lemmy.world•What OS should I use for self-hosting that doesn't require extensive terminal knowledge?English2·16 days agoIt is ok to admit you are wrong.
Jesus Christ, your obnoxious.
Blocked.
foggy@lemmy.worldto Selfhosted@lemmy.world•What OS should I use for self-hosting that doesn't require extensive terminal knowledge?English2·16 days agoI’m done arguing. Not gonna respond to whatever fedora fanboy nonsense to follow.
Ubuntu holds around 30 percent of the Linux desktop market. Fedora sits around 1 to 2 percent. Ubuntu focuses on Long Term Support stability, massive community documentation, seamless hardware driver support, and minimizing breakage for new users. Fedora deliberately pushes bleeding-edge kernels, experimental libraries, and rapid changes that regularly introduce breakage. Beginners do not need the newest kernel version or experimental features. They need stability, predictability, easy troubleshooting, and access to a massive community when things go wrong. Fedora is excellent for intermediate users who know how to fix their own problems. It is irresponsible to recommend a testing ground distro to someone who is still learning how to use the terminal.
If Fedora were actually a good beginner distro, it would dominate beginner spaces like r/linux4noobs, It does not. Fedora is respected, but it is not designed for beginners. Even Fedora’s own documentation assumes technical competence that a first-time Linux user will not have.
It is objectively not a good distro for beginners. Not even Fedora thinks it’s a good distro for beginners. Your arguments make no sense. I certainly don’t care to hear anymore of them.
Good day.
foggy@lemmy.worldto Selfhosted@lemmy.world•What OS should I use for self-hosting that doesn't require extensive terminal knowledge?English21·16 days agoIt is a testing ground for new features. It is literally one of the worst beginner distros. Shit breaks constantly. That is not good for beginners. Just because you like it doesn’t make it good for beginners.
We’re not talking about what distros are good. We are talking about what is good for beginners.
foggy@lemmy.worldto Selfhosted@lemmy.world•What OS should I use for self-hosting that doesn't require extensive terminal knowledge?English21·17 days agoWould absolutely not recommend fedora as a first distro.
foggy@lemmy.worldto Selfhosted@lemmy.world•What OS should I use for self-hosting that doesn't require extensive terminal knowledge?English2·17 days agoYeah, I don’t recommend settling on it, but I stand by learning on it. It will be the most frictionless. It’ll ease you into resolving hairy problems in a way that is less discouraging, because they’re not quite as hairy.
foggy@lemmy.worldto Selfhosted@lemmy.world•What OS should I use for self-hosting that doesn't require extensive terminal knowledge?English36·17 days agoUbuntu. Many will disagree but, Debian flavors are a way smoother experience from the start and Ubuntu has a ton of community support. You’ll rarely find an issue no one found and solved before you.
foggy@lemmy.worldto Selfhosted@lemmy.world•Synology could bring “certified drive” requirements to more NAS devicesEnglish21·27 days agoif you want total control
You literally just moved the goalposts.
But, sure, ok… your NAS can be simply 1 16TB HDD in a server that does a dozen other things already, assuming its generally always available on your network. That’s roughly what I do (with redundancy).
foggy@lemmy.worldto Selfhosted@lemmy.world•Synology could bring “certified drive” requirements to more NAS devicesEnglish157·27 days agoSynology is made for the tech literate tech idiot.
They solve one problem and create a dozen more. That problem not only doesn’t need a physical solution, it doesn’t need to be a standalone device. It doesn’t need its own shitty proprietary operating system.
Anyways. Fuck them.
Im not saying Zuck is good or a savior of choice, but now would be a good time for facebook investors to pressure him to eat that difference.
Not that he should, but hes been all in on Open Source* lately
*Massive stipulations apply.
Oh, they know you’re not a robot. They’re just having trouble tracking you.
foggy@lemmy.worldto Mildly Infuriating@lemmy.world•There now exist bots that spam GitHub repos with AI generated solutions to issuesEnglish132·1 month agoBrb making this bot:
Okay, the permission error is almost certainly because the Samba process inside the container doesn’t have the right Linux permissions for the host directory /mnt/my_ext_hdd/my_dir/my_subdir.
On your server running docker, find the numeric UID and GID for that directory: ls -ln /mnt/my_ext_hdd/my_dir/my_subdir
you likely need to set PUID=<uid_from_step_1> and PGID=<gid_from_step_1> in the environment: section of your docker-compose.yml file for the Samba service.
Recreate the container (docker compose up -d --force-recreate).
WARNING: This assumes you are only accessing Samba from within your secure local network. Never expose Samba directly to the internet. Doing so is a major security risk and makes you a target for attacks.
You’re running into that permission error because of how Docker handles file permissions between the host and the container. It’s by design for security reasons. The user inside the container likely doesn’t have access to the mounted directory unless the UID and GID match what’s on the host. You can work around it, but it’s locked down intentionally.
Also, what’s the use case here? What do you need file sharing via Samba in a Docker container for? If it’s just about moving files in and out, docker cp or docker exec -it container /bin/bash might be easier.
foggy@lemmy.worldto Selfhosted@lemmy.world•Do I really need a firewall for my server?English11·2 months agoIf it is just you on your server and the only access from outside your network is SSHing in front the VPN? You’re good. Especially if it’s just you on your network/VPN.
If there are services that others utilize, you need a firewall. Can’t trust other people’s devices to not drag in malware.
foggy@lemmy.worldto Selfhosted@lemmy.world•Just got my OpenWrt switch - what configurations / preparations should I do?English8·2 months agoSo, this question is very difficult to answer. I don’t want you to be discouraged though.
I can’t answer you because I don’t know your goals. Since we’re in /c/selfhosted, I assume you’re experimenting with some self-hosted setups, which is awesome! But what exactly are you hoping to do with OpenWRT? And what’s the plan for the switch? Are you aiming for better network control, VLANs, firewall rules, or are you just looking to have network area storage?
If you can share more about what you’re trying to accomplish, folks here will be much better equipped to help you figure out your next steps.
foggy@lemmy.worldto Mildly Infuriating@lemmy.world•The forest center near me removed the bins. .. From their café/picnic areaEnglish54·2 months agoThink?
It’s well established peer reviewed scientific literature.
I would absolutely leave that practice.