• 0 Posts
  • 76 Comments
Joined 1 year ago
cake
Cake day: July 29th, 2023

help-circle
  • mlg@lemmy.worldtolinuxmemes@lemmy.worldNewbies never listen...
    link
    fedilink
    English
    arrow-up
    14
    arrow-down
    1
    ·
    2 days ago

    Our crappy vendor software will only function if IPv6 is disabled network wide. Even if one machine has it enabled, the whole thing breaks

    Lol our former crappy vendor solution required to be run directly from AD Administrator. Pure luck the entire business didn’t collapse before we replaced it.

    A thread I read a long time ago on r/sysadmin





  • In a different article, he said he had issues with the ext4 maintainer who was acting high and mighty about C despite being responsible for a number of huge CVEs from code that he wrote.

    That being said, I don’t really see the benefit of rewriting modules in Rust.

    Technically, it’s still not a 1:1 replacement because Rust will many times not generate the exact same machine code as C, which does result in a small loss of speed (and in some small cases, vice versa).

    It’s acceptable for anything new, but unless there’s a notoriously painful part of the kernel, there’s no pont in redoing existing parts and even core userspace binaries.

    C quite literally makes you manipulate memory like a caveman holding a machine gun, but that’s important because it’s exactly what the machine is doing, which is required when you need to maximize efficiency. In Rust, you’d have to abstract some of that to the compiler to handle your logic which doesn’t match what a machine is doing. There is no such thing as “borrowing” and “ownership” in machine code.












  • mlg@lemmy.worldtolinuxmemes@lemmy.worldUsing any DE be like:
    link
    fedilink
    English
    arrow-up
    44
    arrow-down
    1
    ·
    4 months ago

    The KDE to GNOME should have been “imagine not having standard min max window titlebar buttons by default” with each following DE dunking on GNOME for the same reason.

    Seriously, what degenerate thought this was a good idea. Even gesture spamming Mac users still have their standard GUI in case they want to use the mouse like a normal person or idk someone not fluent in computers wants to use the machine without feeling like chopping their hand off.



  • I just wish their websites reflected to show all their available spins. It feels like you have to go out of your way to get to the spins site because the main page only shows Gnome.

    I get that Gnome is RedHat’s main thing, but like at least make a button that says “See other excellent DEs”. The only thing they have is a button for alt downloads that shows stuff for net install and rawhide.



  • BSD is useful for when you want to program some specialty hardware once and chuck it into the abyss with no updates and without releasing the source code so you can maintain a barely passing level of security through obscurity. Or if you really just don’t want to publish your source code for a unix system.

    Things like modems and old routers come to mind. Also PlayStation iirc.

    Most modern IoT stuff I’ve messed with uses linux probably because the devs like not having to manually package things and deal with weird edge case bugs. Since they’re usually making software updates anyway, published vulns are less of a concern.