kiedtink

sonarr radarr bazarr - debian

Oct 7th, 2020 (edited)
83
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.30 KB | None | 0 0
  1. install as root :
  2. https://sonarr.tv/#downloads-v3-linux
  3.  
  4. install as user :
  5. https://varhowto.com/install-radarr-ubuntu-20-04/
  6. https://github.com/morpheus65535/bazarr/wiki/Installation#linux
  7.  
  8.  
  9. error : The scripts f2py, f2py3 and f2py3.7 are installed in '/home/<user_name>/.local/bin' which is not on PATH. Consider adding this directory to PATH or, if you prefer to suppress this warning, use --no-warn-script-location.
  10.  
  11. fix : echo export PATH=/home/<user_name>/.local/bin:$PATH
  12.  
  13. auto start bazarr :
  14.  
  15. root@torrent:~# cat /etc/systemd/system/bazarr.service
  16. [Unit]
  17. Description=Bazarr Daemon
  18. After=syslog.target network.target
  19.  
  20. [Service]
  21. # Change and/or create the required user and group.
  22. User=user
  23. Group=user
  24.  
  25. Type=simple
  26.  
  27. # Change the path to Radarr or mono here if it is in a different location for you.
  28. ExecStart=/usr/bin/python3 /home/user/docker/bazarr/bazarr.py
  29. TimeoutStopSec=20
  30. KillMode=process
  31. Restart=on-failure
  32.  
  33. # These lines optionally isolate (sandbox) Radarr from the rest of the system.
  34. # Make sure to add any paths it might use to the list below (space-separated).
  35. #ReadWritePaths=/opt/Radarr /path/to/movies/folder
  36. #ProtectSystem=strict
  37. #PrivateDevices=true
  38. #ProtectHome=true
  39.  
  40. [Install]
  41. WantedBy=multi-user.target
  42. root@torrent:~# sudo systemctl enable --now bazarr.service
  43.  
  44.  
Add Comment
Please, Sign In to add comment