TrueNAS: Sonarr Manual Install

Sonarr will allow you to automate your TV shows downloads and this TrueNAS: Sonarr Manual Install will show you how to install it on your TrueNAS server. Sonarr is a multi-platform app to search, download, and manage TV shows. It automatically downloads TV shows via Usenet and BitTorrent. Sonarr can integrate directly into your media server setup and integrates directly with most modern download clients: uTorrent, Deluge, rTorrent, NZBGet, SABnzbd, qBittorrent, Transmission and many more. It will determine when an episode has been downloaded and move it to the correct media folder to be picked up by media servers such as Plex and Emby. The project was inspired by other Usenet/BitTorrent movie downloaders such as SickRage. Settting up Sonarr is alot like setting up Radarr, which of course is based on the Sonarr and you can read the TrueNAS: Radarr Manual Install article to walk through also downloading your movies automatically. This article will show you how to install Sonarr within an existing jail (e.g. with your OpenVPN connection and a torrent client which you setup by reading TrueNAS: Add VPN Connection to a Jail) in the most simple way to avoid path and file permission problems that I have previously experienced. With that, lets get on with a Sonarr manual install by following the directions in the article.

If you would like to install Sonnar V3 instead of Sonarr V2, you can follow my FreeNAS: Sonarr V3 Manual Install post. While Sonarr V3 is still technically a beta, I’ve been using it for a while and it is very usable and very stable.

This is part of my ongoing series of TrueNAS and FreeNAS setup, configuration and install articles.

Sonarr Manual Install

The first thing we need to do in this TrueNAS: Sonarr Manual Install article is make sure that everything is up to date using the following commands from the shell within the jail in which you are installing Sonarr:
pkg update
pkg upgrade

Next we can get the package manager to install Sonarr with the following command:
pkg install sonarr

Wait a couple of minutes for it to install Sonarr and all it dependencies.

Sonarr Setup

First we will need to enable the Sonarr service and allow it to run at startup with the following command (again from within the jail’s shell):
sysrc "sonarr_enable=YES"

I was having security problems, so I want Sonarr to run as root, not as the user ‘sonarr’ which it is set to as default. To do this I edited the /usr/local/etc/rc.d/sonarr file and changed:

: ${sonarr_user:=”sonarr”}

to:

: ${sonarr_user:=”root”}

Of course you can keep the user as ‘sonarr’ or change it to whatever user you like, just will need to pay close attention to the securities and how they relate to the securities in the larger TrueNAS system (e.g. match UIDs and GIDs).

Now you can start the service with:
service sonarr start

You can now begin configuring Sonarr from the web interface which is at the following weblink:
http://[yourip]:8989

Ensuring Future Updates

We need to make sure Sonarr knows where to run mono from for future updates. If you don’t do this step you will get an error like:

System.ComponentModel.Win32Exception: ApplicationName=‘mono’, CommandLine=’–debug /tmp/nzbdrone_update/NzbDrone.Update.exe 7274 /tmp/nzbdrone_update /usr/pbi/sonarr-amd64/share/sonarr/NzbDrone.exe /data=/var/db/sonarr /nobrowser’, CurrentDirectory=’’, Native error= Cannot find the specified file

The issues is a path problem and thankfully the fix is quite simple. Simply enter the shell of the jail running Sonarr and enter the following command:
ln -s /usr/local/bin/mono /usr/bin/mono

Sonarr Configuration

I won’t provide all the information on how to configure Sonarr as there are a number of guides out there and they don’t need to be TrueNAS specific. I will however provide a couple tips which can help.

First, I had trouble for a while with qBittorrent removing the torrent when done. Sonarr does not like it when you tell it to remove automatically (presumably as it needs time to note the download is complete and copy it). Instead, you need to tell qBittorrent to ‘pause’ when the download is complete. You may have the same situation with other download clients.

From the qBittorrent web interface, go to Tools -> Options -> Bittorrent Tab. Under the ‘Share Ratio Limiting’ heading the drop box beside where it says ‘then’ select ‘pause them’. Now put a tick beside ‘Seed torrents until their ratio reaches’ and set the value to whatever you want. ‘0’ would mean it would pause as soon as the download is complete and ‘1’ would mean as soon as it has shared an amount equal to the size of the file. Using ‘0’ is frowned upon in the torrenting community. **Scroll to the bottom and click ‘Save’**

qBittorent Options
qBittorent Options

Second, when setting up Sonarr with Jackett, you do not need to individually add each URL for each search provider. Instead copy one (by clicking the ‘Copy Torznab Feed’ button) and pasting it into URL location in the Sonarr/Radarr config as shown in the image below.

Radarr Config
Radarr Config

You will need to edit the URL put in by removing the name of the search provider embedded with the URL and replacing it with ‘all’ as shown below:

Replace:

http://x.x.x.x:9117/api/v2.0/indexers/torrentz/results/torznab/

with

http://x.x.x.x:9117/api/v2.0/indexers/all/results/torznab/

You will of course need to insert your API key and any other configuration necessary.

Conclusion

So with this short, simple and straight forwards article on the easiest way to manually install Sonarr within an existing jail, you should now be off to the races in terms of automatically getting TV shows onto your Plex or Emby media server.

Happy Sonarring.

~digiMoot

Liked it? Take a second to support digiMoot on Patreon!

1 thought on “TrueNAS: Sonarr Manual Install

Leave a Reply

Your email address will not be published. Required fields are marked *