Updated Installation (markdown)

master
Donald Webster 7 years ago
parent 4c63630e7a
commit e5308aace0

@ -40,4 +40,25 @@ Download and extract the latest [release](https://github.com/Radarr/Radarr/relea
wget https://github.com/Radarr/Radarr/releases/download/v0.2.0.99/Radarr.develop.0.2.0.99.linux.tar.gz
tar -xvzf Radarr.develop.0.2.0.99.linux.tar.gz
To run Radarr on startup, follow [this Wiki article](https://github.com/Radarr/Radarr/wiki/Autostart-on-Linux) relevent to your Distro.
To run Radarr on startup, follow [this Wiki article](https://github.com/Radarr/Radarr/wiki/Autostart-on-Linux) relevent to your Distro.
### FreeBSD Jail
### I'm not sure if this is the best, or correct way but it works for me.
```bash
pkg update && pkg upgrade
pkg install mono mediainfo sqlite3
#needed this to stop error:Could not find libgdiplus. Cannot test if image is corrupt.: Couldn't load GDIPlus library
pkg install libgdiplus
cd /usr/local/
fetch https://github.com/Radarr/Radarr/releases/download/v0.2.0.210/Radarr.develop.0.2.0.210.linux.tar.gz
tar -zxvf Radarr.develop.0.2.0.210.linux.tar.gz
rm Radarr.develop.0.2.0.210.linux.tar.gz
echo "/usr/local/bin/mono /usr/local/Radarr/Radarr.exe" > /etc/rc.d/radarr
chmod 555 /etc/rc.d/radarr
#this is needed for updates within Radarr
ln -s /usr/local/bin/mono /bin
restart your jail
use your browser and navigate to jail_ip:7878
```
Loading…
Cancel
Save