• @Oisteink
    link
    53 months ago

    I still don’t understand flatpack on Linux. I see how it makes releasing binaries easy, but the cost and idea is contrary to basic unix principles.

    • conciselyverbose
      link
      fedilink
      293 months ago

      Not everyone values the same things you do. Flatpaks aren’t the cause of the fact that different applications don’t function correctly with different versions of libraries; they’re just the solution.

      Flatpak is better for normal people. It’s better for most advanced users who don’t want to micromanage compatibility issues. And it really doesn’t have an impact on people who do want to micromanage because all your alternative ways to install software are still there.

      • @intrepid@lemmy.ca
        link
        fedilink
        23 months ago

        Flatpaks aren’t the cause of the fact that different applications don’t function correctly with different versions of libraries

        This problem has been solved by Nix and Guix. Nix is as popular among developers as flatpak is. Add bubblewrap to all applications, and you get nearly all the features as flatpaks. Flatpaks, meanwhile are huge and a bit slow to start - problems that Nix and Guix don’t suffer from.

        I do use flatpaks extensively. But they are probably not the best solution to the problems you mention.>

        • @sudneo@lemmy.world
          link
          fedilink
          63 months ago

          Tbh, for me the value of flatpak is in the isolation (great for how easy it is to achieve), rather than the compatibility.

          For example, I run obsidian with no network access and fs access to just the path where my notes are stored. This is really reassuring considering I am not really sure what all the plugins might do. While it is not perfect, it’s much better than having it running natively in my box (I.e. root namespaces).

          • @intrepid@lemmy.ca
            link
            fedilink
            13 months ago

            Isolation is easy to achieve. Flatpak’s sandboxing layer is bubblewrap. It’s an independent software. It wouldn’t be too hard to write a wrapper for bubblewrap that acts like flatpak and launches applications in a carefully constructed sandbox.

            • @sudneo@lemmy.world
              link
              fedilink
              13 months ago

              It’s also not too hard to cook a Dockerfile for it, or even write a systemd wrapper with security settings. However, with flatpak you get this out of the box and mostly in a transparent way, plus you get all the usually annoying aspects (like having GUI applications work in containers) taken care of.

    • @InternetCitizen2@lemmy.world
      link
      fedilink
      163 months ago

      Are those principle still relevant? Particularly with GUI apps? I feel the sandboxing along is a good reason to switch to flatpak (or even snap if you know).

      • @intrepid@lemmy.ca
        link
        fedilink
        -73 months ago

        If you’re interested in sandboxing, then you need just the bubblewrap - not the entire bubblewrap.

          • @intrepid@lemmy.ca
            link
            fedilink
            13 months ago

            Flatpak itself is a layer of software. You could do that for regular apps too - to take away the hassle of having to manually set it up for each app. I already have two software that implements that logic in parts.

      • @nossaquesapao@lemmy.eco.br
        link
        fedilink
        33 months ago

        Well, there’s the increased storage usage, and in some cases, more ram. There can also be issues with integration with your distro themes, etc.

        Many people will consider these as a small cost to the benefits of flatpaks, but I can understand the ones who aren’t sold on it.