mirror of
https://github.com/Sonarr/Sonarr.git
synced 2024-11-22 02:32:51 +01:00
Added instructions for installing Sonarr on a NETGEAR ReadyNAS appliance.
parent
2c7b6f4ea4
commit
0428b755da
@ -90,4 +90,64 @@ For more info about Docker check out the [official website](https://www.docker.c
|
||||
|
||||
**(2)** Click on the `Community` tab in Package Center and you will find Sonarr listed there.
|
||||
|
||||
**NOTE:** You must install Mono first (also found in the Synocommunity repo.)
|
||||
**NOTE:** You must install Mono first (also found in the Synocommunity repo.)
|
||||
|
||||
# NETGEAR ReadyNAS #
|
||||
|
||||
_Tested on a ReadyNAS 516 with ReadyNAS OS v6.2.2_
|
||||
|
||||
**Add Sonarr's repository to your software source**
|
||||
|
||||
sudo apt-key adv --keyserver keyserver.ubuntu.com --recv-keys FDA5DFFC
|
||||
echo "deb http://apt.sonarr.tv/ master main" | tee /etc/apt/sources.list.d/sonarr.list
|
||||
|
||||
**Install/Update Sonarr**
|
||||
|
||||
sudo apt-get update
|
||||
sudo apt-get install nzbdrone
|
||||
|
||||
**Start Sonarr**
|
||||
|
||||
mono /opt/NzbDrone/NzbDrone.exe
|
||||
|
||||
**Open Browser**
|
||||
|
||||
http://localhost:8989
|
||||
|
||||
### Automatically Start Sonarr ###
|
||||
|
||||
**Create the service file**
|
||||
|
||||
```bash
|
||||
cat > /etc/systemd/system/sonarr.service << EOF
|
||||
[Unit]
|
||||
Description=Sonarr Daemon
|
||||
After=syslog.target network.target
|
||||
|
||||
[Service]
|
||||
User=root
|
||||
Group=root
|
||||
|
||||
Type=simple
|
||||
ExecStart=/usr/bin/mono /opt/NzbDrone/NzbDrone.exe -nobrowser
|
||||
TimeoutStopSec=20
|
||||
|
||||
[Install]
|
||||
WantedBy=multi-user.target
|
||||
EOF
|
||||
```
|
||||
|
||||
**Add Sonarr to startup**
|
||||
|
||||
```bash
|
||||
systemctl enable sonarr.service
|
||||
```
|
||||
|
||||
**Start Sonarr service**
|
||||
|
||||
Start sonarr via systemd and verify status.
|
||||
|
||||
```bash
|
||||
systemctl start sonarr.service
|
||||
systemctl status sonarr.service
|
||||
```
|
Loading…
Reference in New Issue
Block a user