How do you guys get software that is not in your distribution’s repositories?

  • RmDebArc_5@sh.itjust.works
    link
    fedilink
    English
    arrow-up
    0
    ·
    7 months ago

    I’m currently on a atomic distro, so how I get my software from favorite to least favorite is this:

    1. Flatpak
    2. Appimage
    3. Fedora distrobox
    4. rpm-ostree
  • HStone32@lemmy.world
    link
    fedilink
    arrow-up
    0
    ·
    7 months ago

    If I could, I’d compile all my software from source. Unfortunately, it seems a lot of open source developers don’t like writing software in C, which means the burden of sorting through dependancy-hell has been deferred to my shoulders instead.

    • Björn Tantau@swg-empire.de
      link
      fedilink
      arrow-up
      0
      ·
      7 months ago

      In that case install Gentoo. Compiling everything from source is its thing. And on the way it will resolve all the dependencies for you. The dependencies you want.

    • u/lukmly013 💾 (lemmy.sdf.org)@lemmy.sdf.org
      link
      fedilink
      English
      arrow-up
      0
      ·
      7 months ago

      Mine is

      AppImage > Native repos > AUR > Manually compiling from source > Finding an alternative

      I don’t like installing software that doesn’t need to be installed, thus I like AppImage. Pretty portable. That also applies to compiling from source. Yes, my home directory is a mess.

  • HouseWolf@lemm.ee
    link
    fedilink
    English
    arrow-up
    0
    ·
    7 months ago

    AUR or flatpak.

    Honestly the longer I spend daily driving Linux the more I enjoy using flatpaks…

    • lattrommi@lemmy.ml
      link
      fedilink
      English
      arrow-up
      0
      ·
      edit-2
      7 months ago

      this is probably an edge case but I do when i visit family and friends. these trips are short and infrequent enough that a laptop would be an unnecessary expense and i’m not driving through mountainous areas with my tower. none of them use linux. most have aged windows or mac machines. they don’t care if i run a live system or puppy linux from a USB drive. i add a handful of appimages i’ll use at night or if there’s free time. I’m sure there are better ways but it works for me.

      • Kusimulkku@lemm.ee
        link
        fedilink
        arrow-up
        0
        ·
        7 months ago

        If it works for you then it works, no need to switch it up. I guess one other way of doing it would be a persistent install on that USB.

    • ILikeBoobies@lemmy.ca
      link
      fedilink
      arrow-up
      0
      ·
      6 months ago

      Rpg paper maker

      Though the Linux version is now in a “do not use” state. The developer decided to just make it into a web app because it was only working on Ubuntu

      • SorryQuick@lemmy.ca
        link
        fedilink
        arrow-up
        0
        ·
        7 months ago

        That’s exactly what the vast majority of AUR packages do already? You can also apply modifications to the compilation process if needed.

    • hperrin@lemmy.world
      link
      fedilink
      arrow-up
      0
      ·
      7 months ago

      My software, QuickDAV, is not in the AUR. It’s open source, and I release it only as an AppImage, because I am lazy.

      • oldfart@lemm.ee
        link
        fedilink
        arrow-up
        0
        ·
        7 months ago

        There’s so much random, useful software distributed only as appimages. But not notable enough for packaging fanboys.

      • folkrav@lemmy.ca
        link
        fedilink
        arrow-up
        0
        ·
        7 months ago

        I guess we should have added the word “notable”

        I’m terribly sorry, you left the door wide open ;)

        I’m curious, what makes AppImage a good choice for the lazy developer? Is it easier to create?

        • Samueru@lemmy.ml
          link
          fedilink
          arrow-up
          0
          ·
          edit-2
          7 months ago

          I’m curious, what makes AppImage a good choice for the lazy developer? Is it easier to create?

          The appimage is basically just git clone -> make -> make install DESTDIR=/path/to/AppDir -> wget appimagecreationtool and finally appimagecreationtool /path/to/AppDir and that’s it you have your appimage.

          appimagecreationtool being several tools that can create the appimage from an AppDir, like linuxdeploy, linuxdeploqt, go-appimage, etc

          And that on itself isn’t complex either, it if basically running ldd on the binary, then copy those libraries into the AppDir and finally run patchelf to patch the paths in the binaries and libraries, suyu uses a deploy script instead of using those tools, which I’ve recently forked and began expanding.

          I don’t know how easy it is to make a flatpak or snap, but I do know the dev of zen browser hates dealing with the flatpak and iirc right now the flatpak is outdated as result.

          EDIT: Also lite-xl has been making a flatpak for like 2 years and it isn’t ready yet.

        • hperrin@lemmy.world
          link
          fedilink
          arrow-up
          0
          ·
          7 months ago

          Ouch. xD

          It’s super easy to create. And you distribute it on your own, so it’s basically like an installer exe on Windows. In my mind it’s one step above only offering source code.

      • cm0002@lemmy.world
        link
        fedilink
        arrow-up
        0
        ·
        7 months ago

        Clearly we need an Arch version of rule 34 and rule 35

        Rule 34a: If linux software exists, it’s in the AUR. No exceptions.

        Rule 35a: If linux software is not in the AUR, it will be made available in the AUR.

  • BF2040@lemmy.world
    link
    fedilink
    arrow-up
    0
    ·
    7 months ago

    I understand appimages. I use them exclusively. Can someone explain what flatpak and SNAP are and how they work? I have autism so please be as clear and concise as possible?

    • Darorad@lemmy.world
      link
      fedilink
      arrow-up
      0
      ·
      7 months ago

      The easiest way to think of it is flatpaks are AppImages with a repository and snaps are flatpaks but bad.

      That has benefits and detriments. Appimages contain everything they need to run, flatpak’s mostly do, but can also use runtimes that are shared between flatpaks.

      All flatpaks are sandboxed, which tends to make them more secure. AppImages can be sandboxed, but many aren’t.

      Flatpaks tend to integrate with the host system better, you can (kinda) theme them, their updates are handled via the flatpak repo, and they register apps with the system.

      AppImages are infinitely more portable. Everything’s in one file, so you can pretty much just copy that to any system and you have the app.

      • BF2040@lemmy.world
        link
        fedilink
        arrow-up
        0
        ·
        7 months ago

        That was a fantastic explination, but you forgot to explain SNAP. Oh snap, you forgot SNAP. Intrusive though won. So what is SNAP, how does it work, and why is it bad?

        • Darorad@lemmy.world
          link
          fedilink
          arrow-up
          0
          ·
          edit-2
          7 months ago

          Yeah, sorry couldn’t resist.

          snaps are very similar to flatpaks and, honestly, is technically better in a lot of ways.

          Snap can be used for basically an entire system, while flatpak is limited to graphical apps. (Ubuntu core is built basically entirely off snaps.)

          Snap is controlled by canonical, and the backend for the snap repo is entirely closed source. I’ve heard snaps are also easier for developers to work with, but I haven’t experienced that side of them.

          Snaps automatically update by default where flatpaks don’t.

          Snaps also get treated as loopback devices when they’re installed, which bloats a lot of utilities. (And they keep a few old versions around which makes it even worse). For example, you could run lsblk and if you’re using snaps like 90% of it will be snaps you’ve installed instead of actual devices.

          Flatpaks are also noticeably faster to start up, which for desktop apps matters, but wouldn’t really matter for a server that’s aiming for a lot of uptime.

          The loopback device issue is the main reason I don’t use snaps. I also like flatpak being completely open, but realistically that doesn’t matter for much. There used to be an open snap store, but that shut down because nobody used it.

          • BF2040@lemmy.world
            link
            fedilink
            arrow-up
            0
            ·
            7 months ago

            I tried to install Ubuntu and it kept uninstalling Command Center every reboot. Not a fan of SNAPs. Or Canonical. But thanks for the explination.

  • boredsquirrel@slrpnk.net
    link
    fedilink
    arrow-up
    0
    ·
    7 months ago

    Appimages are crap too, but at least there is progress with AppMan, repos and that sandboxing solution.

    Snaps are only sandboxed with Apparmor and snapd only allows a single repo (which contained malware multiple times) so get the hell off my lawn XD