GNU/Linux >> Linux Esercitazione >  >> Ubuntu

Come installare Sonarr su Ubuntu 14.04+

Questa guida ti mostrerà come installare Sonarr (NZBDrone) su un Ubuntu 14.04+ Box, assicurati di ricontrollare dalla mia guida su come configurare Sonarr. Questa guida presume che tu sia un utente SUDO sul sistema e non l'utente root, se root per favore ometti "sudo" all'inizio del comando

Aggiungi software al nostro elenco di sorgenti

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

Ora aggiorna l'elenco delle sorgenti software

sudo apt-get update && sudo apt-get upgrade

Ora installiamo Sonarr (NZBDrone)

sudo apt-get install nzbdrone

Puoi avviare Sonarr (NZBDrone) con questo comando

mono --debug /opt/NzbDrone/NzbDrone.exe

La navigazione a questo indirizzo ti consentirà di accedere all'applicazione

http://localhost:8989

Avvio automatico Sonarr (NzbDrone)

Avviare manualmente Sonarr (NzbDrone) tutto il tempo può essere complicato. Pertanto, dopo aver installato Sonarr (NzbDrone) su Ubuntu, consiglio di avviarlo automaticamente all'avvio come descritto qui. Esistono diversi modi per avviare automaticamente Sonarr (NzbDrone) su Ubuntu Linux. Un modo è usare Upstart. Innanzitutto, crea il file sonarr.conf all'interno della cartella /etc/init:

sudo nano /etc/init/nzbdrone.conf

Quindi copia e incolla il seguente contenuto nel file:

author "Reaper - Pure-Media"
description "Upstart Script to run Sonarr as a service on Ubuntu/Debian based systems, as well as others"

#Set username for the process. Should probably be what you use for logging in
setuid yourusername

#This is the install directory. If you installed using a deb package or the Repository you do not need to change this
env DIR=/opt/NzbDrone

setgid nogroup
start on runlevel [2345]
stop on runlevel [016]

respawn

exec mono $DIR/NzbDrone.exe

Sostituisci yourusername con il tuo nome utente che usi per accedere. Quindi salva (Ctrl X e poi Y) ed esci dall'editor. Quindi dagli i permessi di esecuzione:

sudo chmod +x /etc/init/sonarr.conf

Infine, impartisci il seguente comando per avviare, arrestare e riavviare Sonarr:

sudo start nzbdrone

sudo stop nzbdrone

sudo restart nzbdrone


Ubuntu
  1. Come installare Docker su Ubuntu 18.04

  2. Come installare Apache su Ubuntu 18.04

  3. Come installare MariaDB 10.4 su Ubuntu 18.04

  4. Come installare MongoDB su Ubuntu 18.04

  5. Come installare Jenkins su Ubuntu 18.04

Come installare Tomcat 8.5 su Ubuntu 18.04

Come installare Asterisk su Ubuntu 18.04

Come installare Tomcat 9 su Ubuntu 18.04

Come installare Webmin su Ubuntu 18.04

Come installare Kodi su Ubuntu 18.04

Come installare Memcached su Ubuntu 18.04