• dishpanman
    link
    fedilink
    English
    arrow-up
    40
    ·
    edit-2
    3 days ago

    Adding the following that i have not seen mentioned yet:

    Docker - I literally run most of my server programs with docker now. Home Assistant, Jellyfin, and many others.

    Tiny Media Manager that I use to scraper and organize my media library

    Tiny Tiny RSS to combine my news sites into one aggregator. I actually saw this post on it since Lemmy has RSS feeds!

    Openwrt I run as my home router.

    I2P but it’s still pretty clunky.

    Nomachine I use as a remote desktop client.

    RocketDock I still use on my windows desktop after windows removed the programs toolbar.

    ImageJ/Fiji I use for image processing, it’s from the NIH, with a bunch of Java plugins.

    Gluetun I use to run my vpn client

    Kodi for multimedia

      • dishpanman
        link
        fedilink
        English
        arrow-up
        1
        ·
        edit-2
        3 days ago

        I use Tiny media manager to get tv show episode and movie info like fan art, actors and show synopsis and organize my movies, shows, music and audiobooks I get from CDs, DVDs, Blu Rays and downloads. Sonarr and Radarr only snatch files from torrents, and not the rest of the info that is needed for offline mode

        • Appoxo@lemmy.dbzer0.com
          link
          fedilink
          arrow-up
          1
          ·
          3 days ago

          not the rest of the info that is needed for offline mode

          That’s what Jellyfin can do for you (if you store the nfo files along the media).

      • pimeys@lemmy.nauk.io
        link
        fedilink
        arrow-up
        9
        ·
        3 days ago

        Opnsense. Been running it in my router with all the treats for years. Updates frequently and easily. You can do things like tailscale, wireguard, traffic shaping, or adblock in the firewall level pretty easily with it.

        Awesome project.

      • dishpanman
        link
        fedilink
        English
        arrow-up
        1
        ·
        3 days ago

        I’ve been debating on trying out offense instead of OpenWrt. My server has a dual NIC with one interface going to my modem the other to a wireless access point. Openwrt is a bit clunky as I have to boot it in Virtual box. Any difference between PFsense and opensense?

        • tab@sh.itjust.works
          link
          fedilink
          arrow-up
          2
          ·
          3 days ago

          I went for opnsense without even trying pfsense - purely because I don’t trust the company behind pfsense, and came across some mentions of their dubious behavior. No regrets, opnsense is pretty great.

        • dishpanman
          link
          fedilink
          English
          arrow-up
          8
          ·
          edit-2
          3 days ago

          For me docker runs my software in independent containers like jellyfin. For me it helps with migrating the software to different computers, operating systems and os upgrades without completely having to reconfigure the software each time.

          Not sure about the fuck docker comment. I’m always open to alternatives, not everyone has the same software needs.

        • Appoxo@lemmy.dbzer0.com
          link
          fedilink
          arrow-up
          3
          ·
          3 days ago

          Basically like a sort of mini-VM.
          What it solves (for me) is dependency hell.

          No need to install a quadrillion dependencies and solve if two different programs want the same package but maybe different versions.
          Instead of fiddling with that, the image isolates the components.
          This way I could run 5 different web servers on different ports.

          Yes they complicate troubleshooting but the upsides are way more valuable to me.

          • raldone01@lemmy.world
            link
            fedilink
            arrow-up
            2
            ·
            2 days ago

            For me ot actually sinplifies troubleshooting by a lot. No worries when messing around inside the container. Maintainers are looking at the same picture as ypu and can reproduce everything more easily.

            Without docker I could never run all the services I am currently.