Hey guys! After over 2 years of me asking how to take the first steps in self-hosting, I think I’ve finally got most of the things I need set up (except for a mailcow server proxied through a VPS, but that’s for another day). I’ve been seeing a bunch of posts here about the *arr stack, and only recently it piqued my interest enough to really warrant a serious look. But I’ll be honest, it’s a bit confusing. For now, I’m just thinking of starting up the whole suite on my machine, then slowly expose to internet the parts I find useful (and shut down the parts I don’t). But I really can’t find any good…tutorial(?) on how to quickly get the whole stack running, and I’m a bit worried about launching individual apps since I don’t know if/how they communicate with each other. So I’ll try to summarize my, quite naïve, questions here:

  • how exactly do I set up a quick stack? Is that possible? And more importantly, is that recommended?
  • most of the tutorials/stacks I see online use plex for video streaming, but seeing a lot of negativity around plex and its pricing, I reckon using jellyfin would be better. Does it just plug into the ecosystem as easily as plex apparently does?
  • I’ve already set up a hack-ish navidrome instance to stream music, but managing files is a real hassle with it. Does sonarr(?) do it any better?

I know most of these questions can be easily answered through some LLM (which I don’t wanna rely on) or scouring documentation (which honestly look a bit daunting from my point right now), so I figured it’d be best to ask here. Thanks for any help!

  • Kagu@lemmy.ml
    link
    fedilink
    English
    arrow-up
    1
    ·
    40 minutes ago

    Gonna assume you want much more control than this but something that really helped me understand what each arr component did was using an automated script to stand everything up. If you’re using something like proxmox or a VM I really liked yams.media as the steps are laid out very straight forwardly.

    After about a year of running that and moving my home server to TrueNAS I now stand up all my own containers using dockge and docker compose. But IMO its easier to start easy

  • the_artic_one@piefed.social
    link
    fedilink
    English
    arrow-up
    1
    ·
    2 hours ago

    I wanted to get started without having to learn a bunch of Linux networking and docker stuff so I used this pre-built mediastack compose file.

    Then I spent weeks fixing all the problems with it, upgrading the outdated packages that they pinned, sorting through the outdated/incomplete setup docs, and disabling the apps I don’t need (so many monitoring dashboards without config instructions). Now I know a bunch of Linux networking and docker stuff.

    I’d still recommend mediastack as a reference just because it’s a good example of how to set up secure internet access (the diagrams of the network architecture are great) but their “full download vpn” config is overkill (most of this stuff doesn’t really need to be accessible from the Internet in the first place) and even their “mini download vpn” unnecessarily puts the Usenet download client (SABnzbd) in a VPN.

    I’ve seen a few folks mention trash guides, while they’re great, their quality settings weren’t written for current hard drive prices so you might want to skip the part where you crank up all your preferred bitrates to the maximum.

    One thing I added which is haven’t seen mentioned yet is Tunarr to create live tv channels for shows I like to have on in the background. It’s great when it works but it’s in active development so I frequently have issues with it. Thankfully the devs are responsive and helpful.

  • DecronymB
    link
    fedilink
    English
    arrow-up
    2
    ·
    edit-2
    3 minutes ago

    Acronyms, initialisms, abbreviations, contractions, and other phrases which expand to something larger, that I’ve seen in this thread:

    Fewer Letters More Letters
    IP Internet Protocol
    Plex Brand of media server package
    VPN Virtual Private Network

    3 acronyms in this thread; the most compressed thread commented on today has 5 acronyms.

    [Thread #232 for this comm, first seen 11th Apr 2026, 12:20] [FAQ] [Full list] [Contact] [Source code]

  • fartographer@lemmy.world
    link
    fedilink
    English
    arrow-up
    2
    ·
    10 hours ago

    If you wanna go full easy-mode: yams.media

    After you’ve learned how everything works, you can start modifying and eventually completely remove yourself from yams

  • johnwicksdog@aussie.zone
    link
    fedilink
    English
    arrow-up
    5
    ·
    15 hours ago

    Trying to be as helpful as I can, I think you might consider streaming (Plex/Jellyfin) and downloading (*arrs) as two seperate concerns.

    Arrs:

    For now don’t worry about anything other than sonarr (tv shows) or radarr (movies). you can add the more complexity once you get it working.

    These *arrs do two main things:

    • Connect to a “transport” to get new media or update existing media. This is a torrent client or a nzb/usenet client.
    • Manage your media files (such as storage strategies).

    I would create a minimum viable config like this:

    [sonarr] ----> [transmission or whatever torrent/nzb client]

    at that point you should be able to download tv shows and you can building on it. Next steps might be nzbget, radarr or seerr (which is a very nice way to surface this functionality to your users), or connect things like prowlarr.

    The other thing I would say is use something like Docker for this. Easy to make changes that way and provision new services. Here’s my arrs stack’s docker-compose.yml (which is by far not best practice, but it might help you)

    services:
    
      ##############################
      # Transport
      ##############################
      sabnzbd:
        image: 'linuxserver/sabnzbd:latest'
        container_name: sabnzbd
    
        extends:
          file: ../_templates/template.yaml
          service: large
    
        networks:
          - arrs-edge
    
        volumes:
          - './sabnzbd:/config'
          - '/media/web/downloads:/downloads'
          - '/media/web/incomplete-downloads:/incomplete-downloads'
          - '/media/web/watched:/watched'
    
      transmission-openvpn:
        image: haugene/transmission-openvpn
        container_name: transmission
    
        extends:
          file: ../_templates/template.yaml
          service: large
    
        networks:
          - arrs-edge
    
        devices:
          - /dev/net/tun
    
        cap_add:
          - NET_ADMIN
    
        ports:
          - 9091:9091
    
        volumes:
          - /media/web/torrent-data:/data
          - /media/web/books-import/torrents:/data/watch
          - ./transmission/config:/config
    
    
    
      ##############################
      # Arrs
      ##############################
      radarr:
        image: lscr.io/linuxserver/radarr:latest
        container_name: radarr
    
        extends:
          file: ../_templates/template.yaml
          service: nolimit
    
        # environment:
        #   - UMASK=022
    
        volumes:
          - './radarr:/config'
          - '/media/movies:/movies'
          - '/media/web/downloads:/downloads'
          - '/media/web/torrent-data:/torrent-data'
    
        networks:
          - arrs-edge
    
      sonarr:
        image: ghcr.io/linuxserver/sonarr:develop
        container_name: sonarr
    
        extends:
          file: ../_templates/template.yaml
          service: nolimit
    
        volumes:
          - './sonarr:/config'
          - '/media/tv-shows-1:/tv-shows'
          - '/media/web/downloads:/downloads'
          - '/media/web/torrent-data:/torrent-data'
          - '/media/web/torrent-data/completed/sonarr:/data/completed/sonarr'
          - '/media/tv-shows-3:/tv-shows-2'
    
        networks:
          - arrs-edge
    
      prowlarr:
        image: lscr.io/linuxserver/prowlarr:latest
        container_name: prowlarr
    
        extends:
          file: ../_templates/template.yaml
          service: medium
    
        volumes:
          - ./prowlarr:/config
    
        networks:
          - arrs-edge
    
      seerr:
        image: ghcr.io/seerr-team/seerr:latest
        init: true
        container_name: seerr
    
        extends:
          file: ../_templates/template.yaml
          service: medium
    
        volumes:
          - ./seerr:/app/config
    
        networks:
          - arrs-edge
          - pangolin-arrs-edge
    
        healthcheck:
          test: wget --no-verbose --tries=1 --spider http://localhost:5055/api/v1/status || exit 1
          start_period: 20s
          timeout: 3s
          interval: 15s
          retries: 3
    
        restart: unless-stopped
    
    networks:
      arrs-edge:
        external: true
      pangolin-arrs-edge:
        external: true
    

    Plex vs Jellyfin

    Everyone one loves to talk about how they use jellyfin, but I suspect many more people quietly run Plex. You should probably try both, but some things to be aware:

    Jellyfin:

    Pros:

    • Very configurable and extensible with a massive plugin library
    • Free
    • No bloat
    • Excellent codec support

    Cons:

    • No streaming tunnel. If you use cloudflare tunnel, you aren’t allowed to stream media. If you use pangolin, you can create something on Oracle’s free teir that should be good enough. but you need to configure and set that up. Plex just works out of the box
    • Significant security issues. I really don’t wont to start a flame war, but there are issues that I find concerning such as streams being no-auth etc. In their defence, they’re working through the issues. You could probably manage this with some good reverse proxy configs.
    • UI can be a bit slow on older hardware. Plex isn’t great either, but in my experience, Jellyfin is worse.

    Plex

    Pros:

    • Has an included tunnel service for remote access which requires very little configuration
    • Everything just works
    • UI is pretty responsive. Better than AWS Prime apps on my tv, worse than netflix/youtube.

    Cons:

    • Not free. However, they frequently have significant sales on their lifetime membership.
    • Spammy home view. You can disable this on each client, but its just an extra level of confusion for non techies connecting to your system.
    • Very little extensibility. They use to support plugins but those days are pretty much gone.
    • It chokes on some HDR codecs on my 5 year old tv I find, where as jellyfin doesn’t

    Personally, I think Plex is best if you want to access this stuff remotely and you haven’t yet configured a reverse tunnel that can stream media. If you have a pangolin, or you’re comfortable opening a port on your home router, or you have no need to stream remotely, then Jellyfin might be worth looking at if for no other reason than its ecosystem of plugins. I have both available remotely, but I use Plex more than I use Jellyfin.

    • lepinkainen@lemmy.world
      link
      fedilink
      English
      arrow-up
      2
      ·
      4 hours ago

      I paid 79€ or something for Plex Lifetime well over a decade ago and it’s by far the best bang for buck I’ve ever got.

      It’s also dead simple to share it with friends and acquaintances safely. I know how to manage VPN tunnels and all that shit. I’m not setting that up for my aunt who lives 4 hours away. We did manage to get Plex running on her TV over the phone though.

      • mic_check_one_two@lemmy.dbzer0.com
        link
        fedilink
        English
        arrow-up
        1
        ·
        edit-2
        15 minutes ago

        I’m not setting that up for my aunt who lives 4 hours away. We did manage to get Plex running on her TV over the phone though.

        I’ve said this exact same thing in the past and got flamed for it. The “grandma factor” is a very real consideration. My grandma lives almost 5 hours away. I’m not going to walk my grandma through side-loading the Jellyfin app onto her TV, because no native app exists on its App Store. She won’t understand what a Developer Mode for her TV is, let alone how to enable it. And even if it had a native app, the moment she has to input a custom URL for my server, she’ll shut down and say it’s too hard. But she already has a Netflix account, and understands the concept behind a login page. So I can easily walk her through Plex’s sign-in.

        It’s also hard to understate how bad some of the Jellyfin vulnerabilities are. They’re straight up “people can completely bypass the login page to stream media from your server” bad. Sure, it requires knowing the file path ahead of time. And that might be a level of security… Except for the fact that basically everyone uses the Trash Guides to set their *arr’s up, which means they all have the same file structure and automatic naming schemes. And the Jellyfin devs have stated that they likely won’t ever fix many of the biggest vulnerabilities, because it would require completely divesting from the Emby fork that the entire project is built on. Jellyfin is wonderful for LAN viewing. But holy shit please don’t expose it to the internet.

    • Goddard Guryon@sopuli.xyzOP
      link
      fedilink
      English
      arrow-up
      4
      ·
      13 hours ago

      Holy smokes this is extremely informative! I’ll start by pulling in chunks of your config and learning from what it gives me. As for plex/jellyfin again, the only reason I’m (slightly) biased towards jellyfin right now is precisely because it’s not as easy to set up and hence gives me more learning opportunities. But I’ll keep an eye out for plex offers regardless - sometimes it’s nice to have something that just works. But thanks a lot for such a thorough response!

  • egg82@lemmy.world
    link
    fedilink
    English
    arrow-up
    10
    ·
    edit-2
    18 hours ago

    as always, the answer is “it depends” - everyone has their own unique flavor of *arr stack with different components. Breaking it down, everything revolves around the core apps:

    • Radarr, for movies
    • Sonarr, for TV shows / anime
    • Lidarr, for music
    • Readarr (now Bookshelf), for books/audiobooks
    • Whisparr, for porn

    These apps do the majority of the hard work of going from eg. “I want this movie” to “this movie file is now downloaded and placed into a subdirectory on my NAS or storage somewhere”

    Realistically, all you need to get started is a download client (usenet, torrent client, whatever - the most popular choice is qbittorrent-nox or an equivalent docker container), your *arr app(s) of choice, and a way to consume and share the media you’ve now downloaded to your NAS or server (plex, jellyfin, stash, audiobookshelf, VLC, etc)

    For consuming media, here’s a non-comprehensive list that most people will recommend at least one thing from:

    • Plex or Jellyfin for audiovisual media. TV shows, anime, movies, porn, audiobooks, and music
    • Stash for porn-specific media, if you prefer. Significantly better metadata handling and management designed specifically and only for porn
    • Audiobookshelf specifically for books and audiobooks. Again, better metadata handling and management designed specifically for books/audiobooks
    • VLC or an equivalent if you prefer mounting your media share to your PC and just playing the raw files

    The rest of the *arr ecosystem serves as a way to automate this core idea or fix issues with that automation. An example from my own homelab:

    • I have every *arr app listed as the core for finding/downloading whatever media
      • I have two instances of Sonarr and Bookshelf. One Sonarr for TV shows and one for anime, and similarly one Bookshelf for regular books and one for audiobooks. the way data management is handled in these apps it’s significantly easier to set up two instances of each rather than trying to force everything into one app
    • I use Prowlarr as an indexer manager. You can add indexers to each app but it’s easier to set up Prowlarr and let it do the handling and search caching
    • I use qBittorerent for the actual downloading and Plex for sharing. I’ve found that friends and family have a much easier time both finding and using Plex, so I stuck with that over Jellyfin
    • I set up Unpackerr because often times you’ll find imports for the *arr apps fail because they’re compressed in some way. This just automates the finding and decompressing of those files so they can import successfully without needing me to go in and do things myself
    • I use configarr to automate the application of the TRaSH guides to each *arr which significantly increases the odds of getting a good quality version of whatever it is you’re looking for when doing an automatic search
    • I have Seerr set up so friends and family can request movies, TV, or anime on their own without needing to message me all the time
    • The *arr apps do an okay-ish job of constantly looking for upgrades for existing media but they fail in a lot of unexpected ways so I used to run Huntarr. After that imploded I created and now run Fetcharr. If a better version of something I have is ever released it’ll nab it automatically
    • Since I’m a filthy dub watcher (I just can’t do subtitles, sorry) I have Taggarr to tag anime series as “not the dubbed version” which works well enough
    • I just set up dispatcharr for live TV which was a fun little side-project and maybe could be useful later. This was one of those “ooh pretty” set-it-up-and-see-how-it-goes things.
    • Because automated requests from Seerr and Fetcharr can clog up your queues with failed downloads pretty quickly (stalled, bad releases or naming, etc), I set up Cleanuparr to deal with that whole mess. Works pretty well, no need to check and clear things myself any more
    • My wife can’t do any media without subtitles so I also have Bazarr running to download those for any media that’s missing them
    • I also set up Maintainerr because I’ve realized my friends and family have a habit of requesting stuff and then never watching it, so this prevents media from completely filling up the NAS. It deletes media based on rulesets. Mine is customized to delete unwatched stuff after X days
    • I also have Mixarr set up which I have mixed (hah) feelings on. Just takes my music I listen to and grabs artists I don’t already have. Very obviously vibe-coded which makes me nervous because of the type of people who vibe-code popular apps and the thick skin required to publish popular apps to the internet. So far I haven’t found anything better
    • I also recently set up audiobookshelf for books and audiobooks. The metadata handling and management is ehh so I may look into LazyLibrarian to clean up and properly tag downloaded media before audiobookshelf pulls it so it can actually get the correct books and authors
    • I also have Stash running for an interface to Whisparr, since adding porn to Plex would be a terrible idea. My friends have kids and they watch a lot on the Plex. It would be super unfortunate to have porn as a recommended video
    • Finally, I run tautulli for stats upon stats upon stats. And because Mintainerr can make use of it
    • FileFlows and Tdarr are also popular for compression, health checks, etc of existing media. I ran them previously but don’t any longer

    Not all of these will be useful to you, and you’ll likely find others that are more useful for your situation. Like I mentioned, everyone’s *arr stack is different and unique.

    My recommendation: start with an *arr or two, configarr (optional but really recommended - hard to set up but once you do you’re good forever), prowlarr (optional but you’ll thank yourself later if you ever get into this and end up with more *arrs), and unpackerr (really do recommend this one) and go from there.

    • FauxLiving@lemmy.world
      link
      fedilink
      English
      arrow-up
      4
      ·
      16 hours ago

      I’d also add:

      Sometimes you just want to send someone a random file without needing to create an account for them and walking them through installing an app. You can use Filebrowser to generate a link that they can access to browse that specific file/directory without credentials. You can set these links to timeout after minutes/hours/days/never.

      Useful to have a link to all of your services in a portable and shareable form. Very customizable and useful for most homelab assets.

    • Goddard Guryon@sopuli.xyzOP
      link
      fedilink
      English
      arrow-up
      1
      ·
      13 hours ago

      Gotta say this one’s probably more helpful than any guide I could’ve found online. This does give a very clear idea of what exactly it is I’m dealing with, I’ll [try to] keep all these points in mind while I try to manifest a makeshift first attempt. Thanks a ton for all this insight!

    • egg82@lemmy.world
      link
      fedilink
      English
      arrow-up
      2
      ·
      18 hours ago

      For anyone interested in the configarr config I use, here you go. It’s somewhat customized to my taste (especially dubs > subs for anime) and there’s likely an issue or inconsistency or two in it that someone more familiar might be able to spot, but it works pretty well and I’d say it’s a good starting point if you just want to get going.

      Note that it’s a kubernetes ConfigMap but it’s not hard to pull the relevant info into docker for your own needs.

  • CmdrShepard49@sh.itjust.works
    link
    fedilink
    English
    arrow-up
    20
    ·
    22 hours ago

    You should be able to find tutorials on YouTube or follow the TRaSH guide. You don’t need to expose this stuff to the internet, only your download client like Qbittorrent. For movies and TV, all you’d need is a download client + VPN, sonarr (TV), radarr (movies), Prowlarr (handles indexers/trackers), and possibly Jellyseer for requests from you or those you share with in a single UI. There are other *arrs for music (Lidarr), books, porn, etc too. Lidarr can integrate with SoulSeek if thats what you’re using to fill content for Navidrome, but you would use Jellyfin as the media player.

    Yes they’ll integrate well with Plex, Emby, and Jellyfin. You just paste API keys from one to another to allow them to communicate.

    • plateee@piefed.social
      link
      fedilink
      English
      arrow-up
      4
      ·
      19 hours ago

      As a bonus, if you go with newsgroups, you don’t have to expose anything to the internet!

      • ExcessShiv@lemmy.dbzer0.com
        link
        fedilink
        English
        arrow-up
        1
        ·
        10 minutes ago

        Curious, how do you plan to download from your newsgroups if you are not exposed to the internet? This is no different that the internet access e.g. qbit needs.

    • Goddard Guryon@sopuli.xyzOP
      link
      fedilink
      English
      arrow-up
      2
      ·
      19 hours ago

      Haha I feel like I’m way behind anything you mentioned here. I had a bunch of old mp3 files lying around, so for now all I do is upload old/new mp3 files I procure into my nextcloud instance, then use an autosynced nextcloud folder to fill navidrome. I always knew this is a very fragile solution, but your comment seems to be a goldmine of stuff to try. Thanks!

      • CmdrShepard49@sh.itjust.works
        link
        fedilink
        English
        arrow-up
        2
        ·
        19 hours ago

        I haven’t really been in the music game for a long time either with streaming being so easy and most torrent sites not offering much, but I did try SoulSeek out and it was super nice for acquiring new music. I have not tried the integration with Lidarr, but I think that would make it excellent.

  • TheMadCodger@piefed.social
    link
    fedilink
    English
    arrow-up
    5
    ·
    18 hours ago

    What are you running? Does it happen to be some all in one solution like Synology or Ugreen?

    But the gist of it is you get the arrs running in a docker stack, jellyfin running in another. You don’t actually have to point them at each other: the arrs dump your films/series into a media folder you define. You tell your jellyfin server what folder has your media and bob’s your uncle.

    I prefer using Usenet to download my media. Pros, not torrent, less risk. Cons, costs a bit each year.

      • TheMadCodger@piefed.social
        link
        fedilink
        English
        arrow-up
        3
        ·
        13 hours ago

        You need two subscriptions. One to an indexer (https://nzb.su/) which acts like a search engine, and two to a Usenet that hosts media (https://frugalusenet.com/). These two aren’t the only two options out there, but I’ve been using them for years. YMMV.

        Once you have those subscriptions, you need to run sabnzbd in a docker container near your arrs, and point your arrs to the indexer as well as to sabnzbd. Tell Sonarr you want to find a show, it uses the indexer to see where it can be found, tells sabnzbd to acquire it using the servers you paid for in the Usenet group, downloads and pieces it back together and then files it where Sonarr tells it to. Jellyfin notices that media folder has something new, and you can watch it wherever.

        For more interesting cat facts, be sure to smash that subscribe button.

    • Goddard Guryon@sopuli.xyzOP
      link
      fedilink
      English
      arrow-up
      1
      ·
      14 hours ago

      I’m just using a bunch of independent docker containers behind nginx. But this now sounds a lot easier than I had in mind since a few apps I deployed were painful in the rear end when setting up correct folders. As for usenet, I’d have the same question as the other reply - in my mind it’s an archaic (lol) network protocol which I have not the slightest idea about

      • TheMadCodger@piefed.social
        link
        fedilink
        English
        arrow-up
        2
        ·
        edit-2
        10 hours ago

        Reason I asked about Synology was because there’s a good guide here for the arr deployment. I adapted it for my ugreen nas. Might be able to find parallels with whatever set up you’ve got going on.

        Usenet is archaic, but therein lies the protection. It’s a straight download of disparate files that a program you run puts together. Safer than torrent, but your options may be more limited.

        • Goddard Guryon@sopuli.xyzOP
          link
          fedilink
          English
          arrow-up
          1
          ·
          13 hours ago

          Hah that makes a lot more sense. For now I think I’ll stick with the independent containers approach, I have zero familiarity with synology so I better take it one at a time. But usenet sounds pretty interesting now, might give it a look just for the kicks haha

          • TheMadCodger@piefed.social
            link
            fedilink
            English
            arrow-up
            2
            ·
            10 hours ago

            Well, Synology is a brand name NAS aimed at beginners with their own “OS”. Unless you were planning on dropping a decent chunk of change to buy one, it’s a moot point. But because it’s a popular option among people starting out, I was curious of that was your situation, in which case that link would walk you through everything you needed to know, including its quirks.

            I replied to someone else in this thread on how to get started with Usenet if you’re interested. It boils down to two subscriptions and another container running with your arrs stack.

  • AzuraTheSpellkissed@lemmy.blahaj.zone
    link
    fedilink
    English
    arrow-up
    7
    ·
    21 hours ago

    I haven’t tried any out-of-the-box solution or setup script, so I can’t talk about them. if you go diy or want to edit any solution to have internet access exclusively over VPN (or not at all otherwise), I can recommend gluetun. Other than that, I just have a simple docker compose file and a reverse proxy. I recommend not exposing it to the www, but to keep it only accessible in your local network, or tailscale, if your use case allows it. Note: if you set up https, you might be leaking your subdomains in permanent certificate transparency records.

    • Goddard Guryon@sopuli.xyzOP
      link
      fedilink
      English
      arrow-up
      1
      ·
      19 hours ago

      So this is a part I’ve stumbled on for now. I do host a bunch of other stuff which I share with a few friends, so using tailscale was, for me, a bigger hassle than worth. But now that prowlarr requires a VPN connection for security, I’m on the crossroads on whether to push tailscale for everyone or figure out VPN for just prowlarr. But I suppose that’s what gluetun is for? I’ll take a look into it anyway, thanks!

      • AzuraTheSpellkissed@lemmy.blahaj.zone
        link
        fedilink
        English
        arrow-up
        1
        ·
        4 hours ago

        You can expose your stuff to the internet, that’s not inherently frivolous, but it increases your attack surface. If you use cloudflared, you can tunnel it through cloudflared, which helps not publicly exposing your IP (but your services are still publicly exposed). You might be able to use cloudflared together with gluetun, but I prefer having the reverse proxy and cloudflared outside of the gluetun network.

      • ohulancutash@feddit.uk
        link
        fedilink
        English
        arrow-up
        2
        ·
        19 hours ago

        Having Prowlarr behind a VPN is not recommended, as some trackers ban VPN use. Instead have Prowlarr on the host network, and route individual trackers via Gluetun’s http proxy.

  • Grapho@lemmy.ml
    link
    fedilink
    English
    arrow-up
    3
    ·
    19 hours ago

    It depends on whether you want to use torrents or have a usenet subscription. You’d do well to look at TRaSH guides, save yourself a lot of headaches if you structure the container’s directory structures in the way the guides suggest and then you can just use Prowlarr to manage the actual download requests and send them to your torrent or usenet client.

    I use Jellyfin and I suggest you do the same, but honestly you could use whatever you feel like, the *arr stack is going to put everything in the proper folder structure and naming convention so by and large your media server app should be pretty plug and play, just point it at the proper folder and get to scanning.

    • Goddard Guryon@sopuli.xyzOP
      link
      fedilink
      English
      arrow-up
      1
      ·
      19 hours ago

      Ha! That sounds like the exact thing I was looking for. I’ll go through the guide and see how well it turns out. Thanks!

  • N0x0n@lemmy.ml
    link
    fedilink
    English
    arrow-up
    3
    ·
    20 hours ago

    The arr stack is kinda tricky to get started and understand how it all works together, but as soon as it clicks, it’s awesome !!

    Can’t exactly say what, but I kinda got lost and what helped me out was to slowly work one arr service at a time and understand what they actually do. (First only Sonarr after awhile I added prowlarr, then radarr and now slowly testing Seer !)

    Trash guide was also helpful specially for custom formats. Just take your time and don’t try to much to make your own custom formats… Have seen alot a of people on private trackers blow up their ratio without noticing it.

    Best advice I can give you is to just play arround with sonarr or radarr alone and try things out and see what they do ^^ Or try to read and understand the official documentation but you will have a better grasp while doing things :)

    Edit: Ohh and forget about asking chatGPT… It will mostly output outdated information an cause you more trouble and leave you even more confused !

    • Goddard Guryon@sopuli.xyzOP
      link
      fedilink
      English
      arrow-up
      2
      ·
      19 hours ago

      Good to know I’m not stupid for feeling a little intimidated by the arr stack XD

      Actually, I think I will follow this and start with just sonarr to get a feel for it first. I have barely any clue of what ‘format’ means here, so clearly I’d be better off taking a small step first. Thanks!

    • Goddard Guryon@sopuli.xyzOP
      link
      fedilink
      English
      arrow-up
      1
      ·
      19 hours ago

      I do have like a bunch of old stuff from can’t-recall-when. I setup jellyfin while scrolling through the awesome-selfhosted list, but never got to really get it to work because of lack of content

  • plantsmakemehappy@lemmy.zip
    link
    fedilink
    English
    arrow-up
    2
    ·
    20 hours ago

    Wiki.servarr.com and trash guides for setup. Like the other person mentioned, you’ll want qbit with VPN for torrents or sab for usenet, radar and sonarr, prowlarr, and your media server. Lots of apps you can add later, like seerr for request management.

    Recommended containers by the servarr folks are hotio (has built in vpn for the qbit container) or lsio.

    • Goddard Guryon@sopuli.xyzOP
      link
      fedilink
      English
      arrow-up
      1
      ·
      19 hours ago

      I tried to follow servarr head-first, but of course got lost in the jargon since I had next to zero idea of what I’m dealing with. But all these comments (and trash guides, which I somehow never encountered) seem to be great pointers to get me up to speed hehe

      • Mister_Hangman@lemmy.world
        link
        fedilink
        English
        arrow-up
        1
        ·
        12 hours ago

        I mean or he can start down that rabbit hole because simple homelab has articles on all of it and reinforces why their tool Deployrr is a great one stop shop because not only can arr stack be setup quickly but so can like 100 plus other apps all easily and efficiently. I only wish I had it in the beginning. I use it to just stream line my authentic setup.