Differences
This shows you the differences between two versions of the page.
Both sides previous revisionPrevious revisionNext revision | Previous revision | ||
sailing:arrs [2024/09/05 14:05] – 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: | The '*Arrs stack is loosely a suite of web-based tools devoted to find, download and organize your media collections. The __classic__ 'Arrs are: | ||
Line 12: | Line 12: | ||
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: | 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:obsolete: |
- | * [[services: | + | * [[services:obsolete: |
+ | * [[services: | ||
One last interesting resource for managing the '*Arrs stack is [[https:// | 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 /data/Media | ||
+ | cd / | ||
+ | for i in Tv Music Movies Books Audiobooks Podcasts; do mkdir $i; done | ||
+ | chown radarr: | ||
+ | chown sonarr: | ||
+ | chown readarr: | ||
+ | chown audiobookshelf: | ||
+ | chown lidarr: | ||
+ | </ | ||