Differences
This shows you the differences between two versions of the page.
Next revision | Previous revision | ||
sailing:arrs [2024/09/05 13:55] – created willy | sailing:arrs [2025/03/13 14:56] (current) – [Media Collection organization] willy | ||
---|---|---|---|
Line 1: | Line 1: | ||
- | ====== 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: | ||
+ | * [[services: | ||
+ | * [[services: | ||
+ | * [[services: | ||
+ | * [[services: | ||
+ | * Whisparr: manage porn collections | ||
+ | |||
+ | They share a common landing page at [[https:// | ||
+ | |||
+ | 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: | ||
+ | * [[services: | ||
+ | * [[services: | ||
+ | |||
+ | One last interesting resource for managing the '*Arrs stack is [[https:// | ||
+ | |||
+ | ===== Media Collection organization ===== | ||
+ | |||
+ | If you remember from [[gentoo: | ||
+ | |||
+ | I like to create the following folders: | ||
+ | * / | ||
+ | * / | ||
+ | * / | ||
+ | * / | ||
+ | * / | ||
+ | * / | ||
+ | |||
+ | 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): | ||
+ | <code bash> | ||
+ | mkdir /data | ||
+ | mkdir / | ||
+ | cd /data/Media | ||
+ | for i in Tv Music Movies Books Audiobooks Podcasts; do mkdir $i; done | ||
+ | chown radarr: | ||
+ | chown sonarr: | ||
+ | chown readarr: | ||
+ | chown audiobookshelf: | ||
+ | chown lidarr: | ||
+ | </ | ||