• 0 Posts
  • 5 Comments
Joined 1 year ago
cake
Cake day: June 26th, 2023

help-circle



  • First check to make sure you are monitoring for all seasons and episodes not just new ones.

    Next, Sonarr works by checking RSS feeds for new torrents that match what you’re monitoring.

    No new torrents for that show = no downloads.

    You need to use the Search button on a show, season, or episode for it to search existing torrents and download them.


  • There’s a bit to explain here. So the root user is basically the equivalent of Administrator. One big difference (there are many) is that when you run something as root using sudo, you are actually running as the root user. When you ran the first command to create the folder, you created it in your home directory using the ~ shorthand variable which points to your /home/ user folder. The second command, also references your home folder. However since your running as root, it’s looking for the file in the root user’s home directory or /root, not your home folder.

    The config file needs to be in the home directory of the user running the command unless you can put the full path to the config file in the command, then you can put it wherever you want.