I thought I’ll make this thread for all of you out there who have questions but are afraid to ask them. This is your chance!

I’ll try my best to answer any questions here, but I hope others in the community will contribute too!

  • Linkerbaan@lemmy.world
    link
    fedilink
    arrow-up
    5
    ·
    3 months ago

    How do people not using Debian/Ubuntu follow along with tutorials when their package manager doesn’t have a package that’s in Apt?

    • d3Xt3r@lemmy.nzM
      link
      fedilink
      arrow-up
      8
      ·
      edit-2
      3 months ago

      As an Arch user (btw), that’s rarely an issue thanks to the AUR and it’s vast package pool :) But on the very rare occasion that it’s not there on the AUR but available as a deb, I can use a tool called Debtap to convert the .deb to the Arch’s .tar.zst package.

      For rpm-based distros like Fedora and OpenSUSE etc, there’s a similar tool called alien that can convert the .deb to .rpm.

      In both instances though, dependencies can be a pain, sometimes you may need to trawl thru the dependencies and convert/install them, before to do the main package.

      Ideally though, you’d just compile from source. It used to be a daunting task in the old days, but with modern CPUs and build systems like meson, it’s not really a big deal these days. You’d just follow the build instructions on the package’s git repo, and usually it’s just a simple copy-paste job.

      Finally, if these packages are just regular apps (and not system-level packages like themes etc), then there are multiple options these days such as using containers like Distrobox, or installing a Flatpak/Appimage version of that app, if available.

      • Linkerbaan@lemmy.world
        link
        fedilink
        arrow-up
        2
        ·
        3 months ago

        Thanks for the explanation btw. Ive tried other distros but quickly ran into missing dependencies and drivers and instantly gave up on it and just went back to Ubuntu.

        • Allero@lemmy.today
          link
          fedilink
          arrow-up
          2
          ·
          3 months ago

          Never actually missed important dependencies in AUR.

          So you might give Arch or derivatives a spin. Warning: Arch relies on you knowing what you’re doing. You can bork something by doing it the wrong way. Manjaro helps, but has its own issues - mainly, you better not use AUR unless you actually need it.

        • MonkeMischief@lemmy.today
          link
          fedilink
          arrow-up
          2
          ·
          3 months ago

          The other reply here mentioned Arch and a “more user friendly” flavor called Manjaro, but Manjaro isn’t quite Arch.

          I would suggest if you want to try the challenge of Arch without the terminal-only install, give EndeavourOS a look! Their community is exceptionally friendly and helpful, and you get a lot of the benefits of “pure Arch” with an indtaller and usability features. :)

          • Linkerbaan@lemmy.world
            link
            fedilink
            arrow-up
            1
            arrow-down
            1
            ·
            3 months ago

            I have had problems even just using Kubuntu and certain libraries not working because of the QT dependency version from KDE. Then I wasn’t able to update QT because KDE didn’t support the newer version. I quickly gave up on trying to solve dependency hell and went back to stock Ubuntu. Am now traumatized for life of using other distros.

            • MonkeMischief@lemmy.today
              link
              fedilink
              arrow-up
              1
              ·
              edit-2
              3 months ago

              Aw that’s such a bummer! I don’t have a ton of experience here but currently I’m running OpenSUSE Tumbleweed, and something it does is say “This dependency can’t be satisfied, what do you want to do?”

              You can usually “keep obsolete”, “remove the thing”, “ignore this and risk breaking it”.

              If I keep hitting “keep obsolete” and it just goes in circles, I wait a few weeks and usually everything has been pushed by then. :)

              I wonder if this mismatch could be from the 'buntu distros holding back certain packages differently from KDE’s schedule… I sadly don’t know enough to comment. 😅

              • Linkerbaan@lemmy.world
                link
                fedilink
                arrow-up
                2
                arrow-down
                1
                ·
                3 months ago

                Yes Ubuntu is definitely slower in the update cycle. But virtually everyone in the programming world seems to use it and wikis almost always get based on an Ubuntu LTS version.

                As a random example take ROS2

                Even when a new version such as 24.04 comes it usually takes almost six months for people to start migrating and libraries to become well supported on it.

        • AnUnusualRelic@lemmy.world
          link
          fedilink
          arrow-up
          1
          ·
          edit-2
          3 months ago

          Running OpenSuSE Tumbleweed, I can’t say that’s ever been a real issue. I ran Ubuntu a long time (10 years, at least) ago, but too much stuff was broken and version updates were a chore. Maybe it’s gotten better since.

    • baseless_discourse@mander.xyz
      link
      fedilink
      arrow-up
      4
      ·
      edit-2
      3 months ago

      I typically search the package name + fedora, it will probably tell me the alternative package that is in fedora.

      Nowadays, I have moved to an atomic fedora distro, so I would severely limit the amount of package I install on my system for stability and security.

      I think I only have two packages installed on my machine: fish, because it is the only popular shell that follows xdg dir; and a latex-like input method to use in slack.

    • bloodfart@lemmy.ml
      link
      fedilink
      arrow-up
      2
      ·
      3 months ago

      Back in my slackware days I’d just convert other distros packages to the tgz format or compile the package and its requirements.

      If the dependencies were really complex I’d draw a picture to help me understand them better.

    • 🐍🩶🐢@lemmy.world
      link
      fedilink
      English
      arrow-up
      1
      ·
      3 months ago

      I usually look at their GitHub or what have you to see if there are packages or instructions there. I have been able to solve most issues this way. Otherwise I see how much of a bitch it will be to compile from source. Depending what it is, I also check to see if there is a docker image instead.

    • nyan@sh.itjust.works
      link
      fedilink
      arrow-up
      1
      ·
      3 months ago

      My first step is usually to figure out whether the package should exist as a separate entity under Gentoo (which, for instance, doesn’t have separate dev packages). Then I check the overlay masterlist to see if there’s an unofficial package (which there often is).

      If there is no package, I can package it myself (since I’ve been working with the same distro for years and can handle the basic packaging cases), install from source, get the .deb and apply alien or deb2targz and proceed from there, or give the whole thing up as a bad job.