- https://github.com/tidusjar/Ombi/wiki/Installing-on-Debian-Ubuntu
- sudo mkdir /opt/Ombi
- sudo wget {release zip file url}
- sudo unzip Ombi.zip -d /opt/Ombi
- Install mono if you haven’t already
- Check by sudo mono –version
- sudo apt-key adv –keyserver hkp://keyserver.ubuntu.com:80 –recv-keys 3FA7E0328081BFF6A14DA29AA6A19B38D3D831EF
- echo “deb http://download.mono-project.com/repo/debian wheezy main” | sudo tee /etc/apt/sources.list.d/mono-xamarin.list
- sudo apt-get update
- sudo apt-get install mono-complete -y
- Verify mono runs Ombi
- sudo /usr/bin/mono /opt/Ombi/Release/Ombi.exe
- If this doesn’t start, even though you have mono installed, install the complete
- sudo /usr/bin/mono /opt/Ombi/Release/Ombi.exe
- Autostart
- sudo nano /etc/systemd/system/ombi.service
[Unit]
Description=Systemd script to run Ombi as a service
After=network-online.target
[Service]
User=root
Group=root
Type=simple
ExecStart=/usr/bin/mono /opt/Ombi/Release/Ombi.exe
[Install]
WantedBy=multi-user.target
- sudo systemctl daemon-reload
- sudo systemctl enable ombi.service
- Configuration
Comments are closed.