- https://github.com/Sonarr/Sonarr/wiki/Installation
- sudo apt-get install libmono-cil-dev
- sudo apt-key adv –keyserver keyserver.ubuntu.com –recv-keys FDA5DFFC
- echo “deb http://apt.sonarr.tv/ master main” | sudo tee /etc/apt/sources.list.d/sonarr.list
- sudo apt-get update
- sudo apt-get install nzbdrone
- mono –debug /opt/NzbDrone/NzbDrone.exe
- Stop sonarr
- Copy the backup files over, extract them
- The configuration is stored in the home directory of the user that installed it, or that it will be running as
- For now its in tbrz ~/.config/nzbdrone
- Delete the config and db files
- Mv the ones that were in the backup zip
- Start sonarr with the command above
- Update paths and sabnzbd api key if needed
- Moving from windows you need to manually redo each path for tv shows
- Configure auto start
- https://github.com/Sonarr/Sonarr/wiki/Autostart-on-Linux
- sudo vim /etc/systemd/system/sonarr.service
[Unit]
Description=Sonarr Daemon
After=syslog.target network.target
[Service]
User=tbrz
Group=tbrz
Type=simple
ExecStart=/usr/bin/mono –debug /opt/NzbDrone/NzbDrone.exe
TimeoutStopSec=20
KillMode=process
Restart=on-failure
[Install]
WantedBy=multi-user.target
- systemctl enable sonarr.service
- sudo systemctl start sonarr
- systemctl daemon-reload
Comments are closed.