The diversity of Linux distributions is one of its strengths, but it can also be challenging for app and game development. Where do we need more standards? For example, package management, graphics APIs, or other aspects of the ecosystem? Would such increased standards encourage broader adoption of the Linux ecosystem by developers?

  • HiddenLayer555@lemmy.ml
    link
    fedilink
    English
    arrow-up
    26
    ·
    edit-2
    2 days ago

    Where app data is stored.

    ~/.local

    ~/.config

    ~/.var

    ~/.appname

    Sometimes more than one place for the same program

    Pick one and stop cluttering my home directory

    • steeznson@lemmy.world
      link
      fedilink
      arrow-up
      1
      ·
      1 day ago

      There is a separate kernel which is being written entirely in rust from scratch that might interest you. I’m not sure if this is the main one https://github.com/asterinas/asterinas but it is the first one that came up when I searched.

      By the tone of your post you might just want to watch the world burn in which case I’d raise an issue in that repo saying “Rewrite in C++ for compatibility with wider variety of CPU archs” ;)

      • muusemuuse@lemm.ee
        link
        fedilink
        English
        arrow-up
        2
        ·
        edit-2
        1 day ago

        I’m of the opinion that a full rewrite in rust will eventually happen, but they need to be cautious and not risk alienating developers ala windows mobile so right now it’s still done in pieces. I’m also aware that many of the devs who sharpened their teeth on the kernel C code like it as it is, resist all change, and this causes lots of arguments.

        Looking at that link, I’m not liking the MPL.

  • JuxtaposedJaguar@lemmy.ml
    link
    fedilink
    arrow-up
    6
    ·
    edit-2
    2 days ago

    Each monitor should have its own framebuffer device rather than only one app controlling all monitors at any time and needing each app to implement its own multi-monitor support. I know fbdev is an inefficient, un-accelerated wrapper of the DRI, but it’s so easy to use!

    Want to draw something on a particular monitor? Write to its framebuffer file. Want to run multiple apps on multiple screens without needing your DE to launch everything? Give each app write access to a single fbdev. Want multi-seat support without needing multiple GPUs? Same thing.

    Right now, each GPU only gets 1 fbdev and it has the resolution of the smallest monitor plugged into that GPU. Its contents are then mirrored to every monitor, even though they all have their own framebuffers on a hardware level.

      • JuxtaposedJaguar@lemmy.ml
        link
        fedilink
        arrow-up
        2
        ·
        20 hours ago

        Yes and no. It would solve some problems, but because it has no (non-hacky) graphics acceleration, most DEs wouldn’t use it anyway. The biggest benefit would be from not having to use a DE in some circumstances where it’s currently required.

    • Ferk@lemmy.ml
      link
      fedilink
      arrow-up
      12
      ·
      edit-2
      2 days ago

      interoperability == API standardization == API homogeneity

      standardization != monopolization

  • ikidd@lemmy.world
    link
    fedilink
    English
    arrow-up
    20
    ·
    edit-2
    3 days ago

    Domain authentication and group policy analogs. Honestly, I think it’s the major reason it isn’t used as a workstation OS when it’s inherently more suited for it than Windows in most office/gov environments. But if IT can’t centrally managed it like you can with Windows, it’s not going to gain traction.

    Linux in server farms is a different beast to IT. They don’t have to deal with users on that side, just admins.

    • Lv_InSaNe_vL@lemmy.world
      link
      fedilink
      arrow-up
      1
      ·
      edit-2
      1 day ago

      Ubuntu Server supports Windows Active Directory. I haven’t used it for anything but authentication (and authentication works flawlessly) and some basic directory/share permissions but theoretically it should support group policy too.

      It’d be cool if there was a mainstream FOSS alternative though (there might be, I’ve done literally 0 research), but this works okay-ish in the meantime.

      But for management of the actual production servers at work I use a combination of ManageEngine (super great and reasonably priced) and Microsoft’s Entra (doesn’t work well, don’t do it)

    • fxdave@lemmy.ml
      link
      fedilink
      arrow-up
      3
      ·
      edit-2
      2 days ago

      I’ve never understood putting arbitrary limits on a company laptop. I had always been seeking for ways to hijack them. Once I ended up using a VM, without limit…

  • LovableSidekick@lemmy.world
    link
    fedilink
    English
    arrow-up
    8
    ·
    edit-2
    3 days ago

    Small thing about filesystem dialogs. In file open/save dialogs some apps group directories at the top and others mix them in alphabetically with files. My preference is for them to be grouped, but being consistent either way would be nice.

  • irotsoma@lemmy.blahaj.zone
    link
    fedilink
    arrow-up
    10
    ·
    3 days ago

    Not offering a solution here exactly, but as a software engineer and architect, this is not a Linux only problem. This problem exists across all software. There are very few applications that are fully self contained these days because it’s too complex to build everything from scratch every time. And a lot of software depends on the way that some poorly documented feature worked at the time that was actually a bug and was eventually fixed and then breaks the applications that depended on it, etc. Also, any time improvements are made in a library application it has potential to break your application, and most developers don’t get time to test the every newer version.

    The real solution would be better CI/CD build systems that automatically test the applications with newer versions of libraries and report dependencies better. But so many applications are short on automated unit and integration tests because it’s tedious and so many companies and younger developers consider it a waste of time/money. So it would only work in well maintained and managed open source types of applications really. But who has time for all that?

    Anyway, it’s something I’ve been thinking about a lot at my current job as an architect for a major corporation. I’ve had to do a lot of side work to get things even part of the way there. And I don’t have to deal with multiple OSes and architectures. But I think it’s an underserved area of software development and distribution that is just not “fun” enough to get much attention. I’d love to see it at all levels of software.

  • enumerator4829@sh.itjust.works
    link
    fedilink
    English
    arrow-up
    15
    ·
    3 days ago

    Stability and standardisation within the kernel for kernel modules. There are plenty of commercial products that use proprietary kernel modules that basically only work on a very specific kernel version, preventing upgrades.

    Or they could just open source and inline their garbage kernel modules…

    • fxdave@lemmy.ml
      link
      fedilink
      arrow-up
      1
      ·
      2 days ago

      I don’t use any of these, but I’m curious. Could you please write some examples?

      • enumerator4829@sh.itjust.works
        link
        fedilink
        English
        arrow-up
        1
        ·
        2 days ago

        It mostly affects people working with ”fun” enterprise hardware or special purpose things.

        But to take one example, proprietary drivers for high performance network cards, most likely from Nvidia.

    • ethancedwards8@programming.dev
      link
      fedilink
      English
      arrow-up
      5
      ·
      3 days ago

      I’m struggling with this now. There’s an out of tree module I want upstreamed, but the author (understandably) doesn’t want to put in the work to upstream, so I did. The upstream folks are reluctant to take it because I didn’t actually write it.

      I really don’t know what to do.

  • Mihies@programming.dev
    link
    fedilink
    arrow-up
    17
    arrow-down
    4
    ·
    4 days ago

    I’d say games. I’d that really takes off, Linux would replace Windows and all other standards will follow.

    • verdigris@lemmy.ml
      link
      fedilink
      arrow-up
      10
      arrow-down
      1
      ·
      3 days ago

      Have you tried recently? We’ve been pretty much at parity for years now. Almost every game that doesn’t run is because the devs are choosing to make it that way.

    • Xanza@lemm.ee
      link
      fedilink
      English
      arrow-up
      2
      arrow-down
      2
      ·
      3 days ago

      This has always been the key. Amazing to me that not many seem to take it seriously.

    • steeznson@lemmy.world
      link
      fedilink
      arrow-up
      4
      arrow-down
      1
      ·
      2 days ago

      Yes, I find that dude to be very disagreeable. He’s like everything that haters claim Linus Torvalds is - but manifested IRL.

      • lumony@lemmings.world
        link
        fedilink
        English
        arrow-up
        2
        arrow-down
        1
        ·
        1 day ago

        If the people criticizing him could roll up their sleeves and make better software, then I’d take their criticisms seriously.

        Otherwise they’re “just a critic.”