====== The '*Arrs Stack ====== The '*Arrs stack is loosely a suite of web-based tools devoted to find, download and organize your media collections. The __classic__ 'Arrs are: * [[services:radarr|Radarr]]: manage movies collection * [[services:sonarr|Sonarr]]: manage TV shows collections * [[services:lidarr|Lidarr]]: manage music collections * [[services:readarr|Readarr]]: manage books and/or audiobooks collections * [[services:prowlarr|Prowlarr]]: centralize trackers & usenet indexers for the other '*Arrs * Whisparr: manage porn collections They share a common landing page at [[https://wiki.servarr.com/|The Servarr Wiki]]. Loosely speaking, a few more tools can be associated to the '*Arrs stack even if they are definitely **not** part of the Servarr Wiki, which are: * [[services:bazarr|Bazarr]]: manage subtitles (cc) for movies and TV shows * [[services:lazylibrarian|LazyLibrarian]]: another books and audiobooks manager/organizer * [[services:audiobookshelf|Audio Book Shelf]]: the best audiobook and podcast manager and streamer app available. It's not capable to find&download audiobooks like Readarr, but it can do it for podcasts. One last interesting resource for managing the '*Arrs stack is [[https://trash-guides.info/|the Trash Guides]] which is a pretty ocmprehensive collection of hints, settings and general configuration for the '*Arrs. ===== Media Collection organization ===== If you remember from [[selfhost:storage|Storage Setup]], you have mounted your **/data** RAID disks. It seems like a good idea to store your media collection on it, doesn't it? I like to create the following folders: * /data/Media/Movies (owned by __radarr__ user) * /data/Media/Tv (owned by __sonarr__ user) * /data/Media/Music (owned by __radarr__ user) * /data/Media/Podcasts (owned by __audiobookshelf__ user) * /data/Media/Books (owned by __readarr__ user) * /data/Media/Audiobooks (owned by __audiobookshelf__ user) It is a good idea to create a common group called **media** to which all the services that find, download, organize and play your media collections will belong. This will highly simplify file access and help reduce permission issues. The above folder structure shall be owned by this group: So, here how you can create this structure and apply the permissions (this assumes you have already installed the various services): mkdir /data mkdir /data/Media cd /data/Media for i in Tv Music Movies Books Audiobooks Podcasts; do mkdir $i; done chown radarr:media Movies chown sonarr:media Tv chown readarr:media Books chown audiobookshelf:media Audiobooks Podcasts chown lidarr:media Music