Ombi icon indicating copy to clipboard operation
Ombi copied to clipboard

Installation docs do not work (Raspberry Pi)

Open JonLevin25 opened this issue 4 months ago • 0 comments

Summary

https://docs.ombi.app/guides/installation/#debian-apt-repo

When Installting develop version I noticed the apt-key deprecation and decided to reinstall via PackageCloud.

I encountered two issues when trying to follow instructions.

  1. Add the apt repository to the apt sources list: section declares explicitly only amd64 architecture. This precludes any ARM machines including raspberry pis. I'm assuming this isn't intentional as installing using the non-PackageCloud method worked generally smoothly. For me removing the arch=amd64 seemed to work. (You can obviously also explicitly declare all architectures you'd like to support)

  2. The command sudo curl -sSL https://packagecloud.io/Ombi-app/Ombi-Dev/gpgkey | gpg --dearmor > /usr/share/keyrings/ombi-archive-keyring.gpg encounters permission issues when trying to write to /usr/share/keyrings/ombi-archive-keyring.gpg. Using sudo tee instead of a redirect worked for me:

sudo curl -sSL https://packagecloud.io/Ombi-app/Ombi-Dev/gpgkey | gpg --dearmor | sudo tee /usr/share/keyrings/ombi-archive-keyring.gpg > /dev/null

Ombi Version

4.20.1

What platform(s) does this occur on?

Linux

What database are you using?

SQLite (Default)

Relevant log output

No response

JonLevin25 avatar Oct 14 '24 12:10 JonLevin25