• 8 Posts
  • 155 Comments
Joined 2 years ago
cake
Cake day: June 11th, 2023

help-circle
  • Steam Deck and Linux desktop user here.

    I wouldn’t prioritize a native Linux binary if I were you. For some of my games that have a native Linux version, I still run the Proton compatibility version instead because it runs better. Proton is insanely well-optimized and adapted to Linux desktops, your own code will have a hard time competing with that.

    Just make sure to pick an engine / tech stack that works well with Proton and find one or more testers who run SteamOS or another Linux distribution.



  • You keep using the word “maintenance”. All I’m worried about is not installing any security patches for months.

    The problem that I tried to highlight with my “cherry picking” is:

    • Running a machine with open vulnerabilities for which patches exist also “paints a target on your back”: even if your data is worthless, you are essentially offering free cloud compute.
    • But mostly, a single compromised machine can be an entrypoint towards your entire home network.

    So unless you have separated this Orange Pi into its own VLAN or done some other advanced router magic, the Orange Pi can reach, and thus more easily attack all your other devices on the network.

    Unless you treat your entire home network as untrusted and have everything shut off on the computers where you do keep private data, the Orange Pi will still be a security risk to your entire home network, regardless of what can be found on the little machine itself.


  • No it is

    https://www.pandasecurity.com/en/mediacenter/consequences-not-applying-patches/

    And:

    You’re allowing for more attack vectors that would not be there if the system were to be patched. Depending on the severity of the vulnerability, this can result in something like crashes or something as bad as remote code execution, which means attackers can essentially do whatever they want with the pwned machine, such as dropping malware and such. If you wanna try this in action, just spin up a old EOL Windows machine and throw a bunch of metasploit payloads at it and see what you can get.

    While nothing sensitive may be going to or on the machine (which may seem to be the case but rarely is the case), this acts as an initial foothold in your environment and can be used as a jumpbox of sorts for the attacker to enumerate the rest of your network.

    And:

    Not having vulnerability fixes that are already public. Once a patch/update is released, it inherently exposes to a wider audience that a vulnerability exists (assuming we’re only talking about security updates). That then sets a target on all devices running that software that they are vulnerable until updated.

    There’s a reason after windows Patch Tuesday there is Exploit Wednesday.

    Yes, a computer with vulnerabilities can allow access to others on the network. That’s what it means to step through a network. If computer A is compromised, computer B doesn’t know that so it will still have the same permissions as pre-compromise. If computer A was allowed admin access to computer B, now there are 2 compromised computers.

    From https://www.reddit.com/r/cybersecurity/comments/18nt1o2/for_individuals_what_are_the_actual_security/



  • F04118F@feddit.nltoich_iel@feddit.orgich🙂iel
    link
    fedilink
    arrow-up
    15
    arrow-down
    2
    ·
    10 days ago

    How would you feel about this as an autist who stims? I would be scared that even the most progressive online spaces are normalizing mocking autists for stimming.

    We don’t need to use discrimination to mock and hate Elon Musk. There are plenty of valid reasonsto mock him and hate him. His sexism, nazism, willful ignorance about discrimination, inability to have equal relationships with meaningful communication (remember when he told his wife “I’d fire you if you were my employee”?), etc.

    Let’s stick to those and not alienate neurodivergents. (Same goes for fat-shaming Elon btw)







  • Thanks for raising awareness of FOSS Discord alternatives. Revolt certainly is the best looking of all of them.

    Last time I looked into this, Revolt’s voice and video chat was “unsupported” for self-hosting while they were working on a complete rewrite. Is this still the case?

    The other big FOSS Discord alternative is Synapse-Matrix with the Element X client, but no clue how far along voice and video is over there either.

    Then there’s Mattermost, which is more work-oriented and has voice and screen share, but no video calls.

    I should host some of this stuff to try it out.






  • I’ve been doing almost all of my gaming on Linux for 2 years now, running a 5800X3D and an RTX 3080.

    Why the “almost”? I love to fly flight simulators, mostly DCS World, in VR and am still using an HP Reverb G2 (Windows) headset.

    Everything else works without issues on Linux for me. I’ve been sitting on Pop!_OS 22.04 but if I were to install today, I’d go for Linux Mint







  • GitOps + Renovate

    Gives you:

    • automation of updates
    • smart notification of updates that are below a certain confidence that it won’t break stuff
    • rollback: simply git revert
    • the whole shebang

    Some stacks that work well with GitOps are:

    • k8s + Flux or ArgoCD
    • Nix(OS)

    Mixing them is a LOT of complexity though. Just pick whichever you are most comfortable with. If you want a declarative immutable OS just for running k8s, check Talos Linux.

    If you don’t want to deal with GitOps, Nix or k8s, and you don’t need recent versions, just run Debian and set a cronjob for auto updates. Then only deal with potential breaking changes just once every 5(?) years or thereabouts.