What software have you found particularly frustrating or difficult to configure on Linux?

  • xcjs@programming.dev
    link
    fedilink
    arrow-up
    1
    ·
    49 minutes ago

    Getting Keycloak and Headscale working together.

    But I did it after three weeks.

    I captured my efforts in a set of interdependent Ansible roles so I never have to do it again.

  • fin@sh.itjust.works
    link
    fedilink
    arrow-up
    1
    ·
    56 minutes ago

    Nextcloud requiring me to set the actual domain when I just want to run it locally was pretty frustrating

  • notthebees@reddthat.com
    link
    fedilink
    arrow-up
    3
    ·
    3 hours ago

    Trying to disable the lid close sensor on my laptop. My issue is twofold. It’s a convertible (pavilion x360) and I’m using bunsenlabs Linux.

  • TwistedTurtle@monero.town
    link
    fedilink
    arrow-up
    1
    ·
    3 hours ago

    Setting up a matrix server was a god damn nightmare for me. I eventually got it working but I hit pretty much every conceivable obstacle along the way. Getting the config file just right, the networking, the federation, the coturn server, getting end users to understand they need to backup their keys…

    I’m sure it’d be easier for a Linux pro but I was in way over my head. Only got it working through stubbornness and help from the community.

  • blackstrat@lemmy.fwgx.uk
    link
    fedilink
    arrow-up
    1
    ·
    3 hours ago

    I gave up trying to setup a Mastodon server in docker. Lemmy was pretty tricky at the time as the docs were wrong. My email server was a bit tricky, but I’ve not really done much to tinker with it in the proceeding 6 years, so was worth it.

  • WFH@lemm.ee
    link
    fedilink
    English
    arrow-up
    6
    arrow-down
    1
    ·
    5 hours ago

    Installing Fedora. I had almost nothing to configure, it worked out of the box. How frustrating! I had the whole day planned and now what? Enjoy my free time like a pleb !?!

    (/s just in case anyone was wondering)

  • MonkderVierte@lemmy.ml
    link
    fedilink
    arrow-up
    2
    ·
    7 hours ago

    xorg.conf. The (wrong) example from Arch Wiki works but following the official documentation doesn’t.

  • astrsk@fedia.io
    link
    fedilink
    arrow-up
    4
    ·
    10 hours ago

    Do VLANs with multiple wireless and wired clients using OPNSense and OpenWRT dummy APs count? Still haven’t quite figured it out.

    • DasFaultier@sh.itjust.works
      link
      fedilink
      arrow-up
      5
      ·
      12 hours ago

      I have limited Python experience, but I always thought that’s what virtualenvs and requirements.txt files are for? When I used those, I found it easy enough to use.

    • JustTesting@lemmy.hogru.ch
      link
      fedilink
      arrow-up
      3
      ·
      edit-2
      12 hours ago

      pyenv and pyenv-virtualenv together solves this for me. Virtualenv with specific python versions that work together well with other tools like pip or poetry.

      It boils down to something like

      $ pyenv install 3.12.7
      $ pyenv virtualenv 3.12.7 myenv
      $ pyenv activate myenv
      

      and at that point you can do regular python stuff like pip installing etc.

      • JubilantJaguar@lemmy.world
        link
        fedilink
        arrow-up
        4
        arrow-down
        2
        ·
        8 hours ago

        If you’re having to type out version numbers in your commands, something is broken.

        I ended up having to roll my own shell script wrapper to bring some sanity to Python.

        • JustTesting@lemmy.hogru.ch
          link
          fedilink
          arrow-up
          2
          ·
          edit-2
          4 hours ago

          You misunderstand, the first two commands are just one time setup to install a specific python version and then to create an env using that version. After that all you need is `pyenv activate myenv´ to drop you into that env, which will use the correct python version and make sure everything is isolated from other environments you might have.

          You can also just create an env with the system python version, but the question was specifically about managing multiple versions of python side by side and this makes that super easy.

          You could also combine it with direnv to automatically drop you into the correct environment based on the folder you are in, so you don’t have to type anything after the initial setup.

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

            The issue is more general. When dealing with, say, apt, my experience is that nothing ever breaks and any false move is immediately recoverable. When dealing with Python, even seemingly trivial tasks inevitably turn into a broken mess of cryptic error messages and missing dependencies which requires hours of research to resolve. It’s a general complaint. The architecture seems fragile in some way. Of course, it’s possible it’s just because I am dumb and ignorant.

            • jdnewmil@lemmy.ca
              link
              fedilink
              arrow-up
              1
              ·
              22 minutes ago

              When you come across some Python code for something written 5 years ago and they used four contributed packages that the programmers have changed the API on three times since then, you want to set up a virtual environment that contains those specific versions so you can at least see how it worked at that time. A small part of this headache comes from Python itself mutating, but the bulk of the problem is the imported user-contributed packages that multiply the functionality of Python.

              To be sure, it would be nice if those programmers were all dedicated to updating their code, but with hundreds of thousands of packages that could be imported written by volunteers, you can’t afford to expect all of them them to stop innovating or even to continue maintaining past projects for your benefit.

              If you have the itch to fix something old so it works in the latest versions of everything, you have that option… but it is really hard to do that if you cannot see it working as it was designed to work when it was built.

  • 2xsaiko@discuss.tchncs.de
    link
    fedilink
    arrow-up
    3
    ·
    10 hours ago

    hostapd. I have no idea how you’re supposed to figure out the 50 or so options OpenWrt outputs for an AX card that I just ended up copying. And why doesn’t it detect those on its own?