Sonarr
Getting started
Sonarr is a PVR for Usenet and BitTorrent users. It can monitor multiple RSS feeds for new episodes of your favorite shows and will grab, sort and rename them.
References
-
Install
Run the official install script for Debian-based systems:
Terminal window curl -o- https://raw.githubusercontent.com/Sonarr/Sonarr/develop/distribution/debian/install.sh | sudo bash -
Add user to groups
Give your user and Sonarr permission to access the
mediagroup and each other’s files:Terminal window sudo usermod -aG media {{USERNAME_VAR}}sudo usermod -aG media sonarr -
Set folder group and permissions
Change group ownership of your
Videosdirectory and restrict access so only members of the group can read/write:Terminal window sudo chgrp -R media /home/{{USERNAME_VAR}}/Videossudo chmod -R 775 /home/{{USERNAME_VAR}}/Videos -
Make directories inherit group
Ensures that any new folders created under
Videoswill automatically use themediagroup:Terminal window sudo find /home/{{USERNAME_VAR}}/Videos -type d -exec chmod g+s {} + -
Open web ui