Lidarr is a music collection manager for downloading and organizing music. In this tutorial, we will guide you through the process of installing Lidarr on Linux Mint.
Before you start, ensure that you have the following prerequisites:
Follow the below steps to install Lidarr on Linux Mint.
Lidarr is built using the .NET framework, so we need to install the mono-devel package.
Open a terminal and type:
sudo apt install mono-devel -y
To download the Lidarr package, use the wget command:
wget https://github.com/Lidarr/Lidarr/releases/download/v0.8.1.2135/Lidarr.develop.0.8.1.2135.linux.tar.gz
The above command downloads Lidarr's latest version. You can always visit https://github.com/Lidarr/Lidarr/releases to download the latest package.
After downloading, extract the Lidarr package:
tar -xzvf Lidarr.develop.0.8.1.2135.linux.tar.gz
Move the Lidarr folder to the opt directory:
sudo mv Lidarr/ /opt/
Create a systemd service file for Lidarr:
sudo nano /etc/systemd/system/lidarr.service
Add the below code to the file.
[Unit]
Description=Lidarr Daemon
[Service]
User=root
Group=root
Type=simple
ExecStart=/usr/bin/mono /opt/Lidarr/Lidarr.exe
TimeoutStopSec=20
KillMode=process
Restart=on-failure
[Install]
WantedBy=multi-user.target
Save and close the file.
Reload the systemd daemons:
sudo systemctl --system daemon-reload
Start the Lidarr service:
sudo systemctl start lidarr
Enable the Lidarr service to start when the system boots:
sudo systemctl enable lidarr
Open a web browser and access Lidarr's UI at http://localhost:8686.
In this tutorial, we have explained how to install Lidarr on Linux Mint. With Lidarr installed, you can easily download and organize your music collection.
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!