Differences
This shows you the differences between two versions of the page.
| — |
movies [2020/03/21 15:02] (current) curry_searle created |
||
|---|---|---|---|
| Line 1: | Line 1: | ||
| + | ==== Install Radarr - Finder of Movies ==== | ||
| + | |||
| + | Setup repository and install dependencies | ||
| + | < | ||
| + | mkdir ~/src | ||
| + | sudo apt install gnupg ca-certificates | ||
| + | sudo apt autoremove | ||
| + | sudo apt-key adv --keyserver hkp:// | ||
| + | echo "deb https:// | ||
| + | sudo apt update | ||
| + | sudo apt install mono-devel | ||
| + | </ | ||
| + | |||
| + | Download and install Radarr | ||
| + | < | ||
| + | cd ~/src | ||
| + | curl -L -O $( curl -s https:// | ||
| + | ls | ||
| + | tar -xvzf Radarr.develop.*.linux.tar.gz | ||
| + | sudo mv Radarr /opt/ | ||
| + | </ | ||
| + | |||
| + | Setup Radarr to launch with SysetemD | ||
| + | < | ||
| + | sudo -i | ||
| + | cat <<EOF > / | ||
| + | [Unit] | ||
| + | Description=Radarr Daemon | ||
| + | After=syslog.target network.target | ||
| + | |||
| + | [Service] | ||
| + | # Change the user and group variables here. | ||
| + | User=tube | ||
| + | Group=tube | ||
| + | |||
| + | Type=simple | ||
| + | |||
| + | # Change the path to Radarr or mono here if it is in a different location for you. | ||
| + | ExecStart=/ | ||
| + | TimeoutStopSec=20 | ||
| + | KillMode=process | ||
| + | Restart=on-failure | ||
| + | |||
| + | # These lines optionally isolate (sandbox) Radarr from the rest of the system. | ||
| + | # Make sure to add any paths it might use to the list below (space-separated). | ||
| + | # | ||
| + | # | ||
| + | # | ||
| + | # | ||
| + | |||
| + | [Install] | ||
| + | WantedBy=multi-user.target | ||
| + | EOF | ||
| + | exit | ||
| + | </ | ||
| + | |||
| + | Enable, start and verify the Radarr service... | ||
| + | < | ||
| + | sudo systemctl enable radarr.service | ||
| + | sudo systemctl start radarr.service | ||
| + | service radarr status | ||
| + | netstat -an | grep LISTEN | grep 7878 | ||
| + | </ | ||
