Install Radarr on Ubuntu. With NZBGet as a download program.

In this tutorial we are going to install Radarr on Ubuntu with NZBGet. Then we will configure in Radarr. With NZBGet. So that you downloads, from the newsgroups. Are downloaded With NZBGet.

Install Radarr Ubuntu.

We’re going now. Update the software list.

sudo apt-get update

Now we are going to install the required software. For Radarr.

sudo apt-get install libmono-cil-dev curl mediainfo

Now we are going to download Radarr. Beware! This link may have changed. If a new version is out. Then see https://github.com/Radarr/Radarr/releases/. For the correct download link.

sudo wget https://github.com/Radarr/Radarr/releases/download/v0.2.0.870/Radarr.develop.0.2.0.870.linux.tar.gz

We’re going to unpack Radarr. To the Radarr hidden folder. By a dot “.” the folder is hidden.

sudo tar -xf Radarr* -C /.radarr/

Now we are going to set Map rights correctly. Otherwise it may be that, Radarr cannot be updated to a recent version.

sudo chown -R username:username /.radarr/Radarr

Now we have to, go to the Radarr installation directory.

cd /.radarr/Radarr

Now we are going to start Radarr.

mono Radarr.exe

You can now acces Radarr on http: //server.ip.address: 7878.

Start Radarr while booting

We are now going to add Radarr to the init.d startup script. So that Radarr is started. During the boot process.

sudo nano /etc/systemd/system/radarr.service

If you get a notification now. That Nano is not installed. Then execute the command below.

sudo apt-get install nano

You must copy the script below. And then paste. Beware! Customize the user name. To your own Ubuntu username.

[Unit]
Description=Radarr Daemon
After=syslog.target network.target

[Service]
User=yourusername
Group=user
Type=simple
ExecStart=/usr/bin/mono /.radarr/Radarr/Radarr.exe -nobrowser
TimeoutStopSec=20
KillMode=process
Restart=on-failure

[Install]
WantedBy=multi-user.target

Now press Ctrl + X key. And then we press on the Y button. And then the Enter key. To save the script.

Now we still have to activate the script.

sudo systemctl enable radarr

Now we can. Start the Radarr service.

sudo service radarr start

Now wait a minute. Radarr is now starting. You have now completed the installation of Radarr on Ubuntu.

Tutorial Radarr Ubuntu

  1. Radarr tutorials.
  2. Radarr install Ubuntu with NZBGet as a download program.
  3. Configure Radarr with NZBGet Ubuntu .
  4. Ubuntu automatically downloads movies with Radarr from the newsgroups.

Be the first to comment

Leave a Reply