Radarr
Getting started
Radarr is a movie collection manager for Usenet and BitTorrent users. It can monitor multiple RSS feeds for new movies and will interface with clients and indexers to grab, sort and rename them.
References
-
Install
Run the install script for Debian-based systems:
Terminal window curl -o- https://raw.githubusercontent.com/huffmanks/code-share/main/src/files/scripts/radarr.sh | sudo bash -
Add user to groups
Give your user and Radarr permission to access the
mediagroup and each other’s files:Terminal window sudo usermod -aG media {{USERNAME_VAR}}sudo usermod -aG media radarr -
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