Hey all,

I need some help. I’m trying to I stall Organizr V2 on my PC that is running my Sonarr, Radarr, and Plex. I keep getting missing dependencies though. Specifically ‘fileinfo’ and ‘mbstring’.

I’m using the owi_installer on Windows 11. Any suggestions?

  • AJamesBrown@aussie.zone
    link
    fedilink
    English
    arrow-up
    6
    ·
    7 months ago

    Have you considered using docker to install it as a container? I haven’t used this one specifically but run all my *arr apps as docker containers which avoids these dependency type issues.

    Sorry I couldn’t help with the question you asked though 😔

    • earmuff@lemmy.dbzer0.com
      link
      fedilink
      English
      arrow-up
      3
      ·
      7 months ago

      Agree with this comment. Use docker. In the beginning a little bit more complex, but if used properly, you never have to care about updating anymore. @OP if you need some help, I can give you some advice and my Docker Compose file.

        • earmuff@lemmy.dbzer0.com
          link
          fedilink
          English
          arrow-up
          1
          ·
          7 months ago

          As I have no idea what level of knowledge you have in IT, it might be hard to understand. I try to keep it ELI5. Years ago, if you wanted to run software, you had to buy a PC/server, which meant you had to buy all the hardware for it. As hardware development continued, things like CPU‘s suddenly got faster and were able to handle multiple tasks at once. So people had to come up with ways to share this power between different software components. For various reasons, you didn’t want to install everything on the same operating system, to avoid compatibility issues. The ideas of Virtual Machines and Containers was born. The key difference between those two concepts is, that in VM‘s, you have a full operating system running the software. In Containers, you share the operating system base, but the containers itself are isolated.

          So, docker is providing an easy way to manage containers. Since the container itself does not have that much overhead in terms of „blocked resources“, we can create one container per application we want to run. One for Sonarr, one for Radarr, etc.

          Since docker is running on Linux kernels, is there a way for you to have a Linux server? Or could you maybe install Linux in a VM?