Radarr is an automated movie downloading service that can be used with usenet and torrents. In this tutorial, we will guide you through the steps to install Radarr on Manjaro.
Before we can start installing Radarr, there are a few prerequisites that need to be met:
Open a terminal emulator on your Manjaro system.
Install the necessary packages:
sudo pacman -S mono git
Clone the Radarr repository from GitHub:
git clone https://github.com/Radarr/Radarr.git
Navigate to the Radarr folder:
cd Radarr
Build the Radarr solution:
mono --debug BuildRadarr.exe
Once the solution has been built, run Radarr:
mono Radarr.exe
This should launch the Radarr application, which can be accessed through the browser at http://localhost:7878
.
To make Radarr start automatically at boot, we will create a systemd service:
a. Create a new service file:
sudo nano /etc/systemd/system/radarr.service
b. Paste the following code into the file:
[Unit]
Description=Radarr movie management daemon
After=syslog.target network.target
[Service]
User=<USERNAME>
Group=<GROUP>
Type=simple
ExecStart=/usr/bin/mono /opt/Radarr/Radarr.exe -nobrowser
[Install]
WantedBy=multi-user.target
Replace <USERNAME>
with your system username, and <GROUP>
with your system group.
c. Save the file and exit the text editor.
Enable the service to start on boot:
sudo systemctl enable radarr
Start the service:
sudo systemctl start radarr
Radarr should now automatically start on boot and can be accessed through the browser at http://localhost:7878
.
In this tutorial, we have shown you how to install Radarr on Manjaro. With Radarr, you can easily automate the downloading and management of movies. If you encounter any issues during the installation process, feel free to consult the Radarr documentation or seek help from the Manjaro community.
If you want to self-host in an easy, hands free way, need an external IP address, or simply want your data in your own hands, give IPv6.rs a try!
Alternatively, for the best virtual desktop, try Shells!