Skip to content

Instantly share code, notes, and snippets.

@todgru
Last active March 16, 2019 00:22
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save todgru/8e7c8118b87146f10f41f9d967803610 to your computer and use it in GitHub Desktop.
Save todgru/8e7c8118b87146f10f41f9d967803610 to your computer and use it in GitHub Desktop.
install emby on a raspbery pi 3

Installing Emby on a Raspberry Pi 3

note: this is probably not a good idea if any of the media need transcoding.

another note: was able to install the open source verion of Emby called JellyFin, using Docker: https://hub.docker.com/r/jellyfin/jellyfin

dependencies

https://www.mono-project.com/download/stable/#download-lin-debian

sudo apt install apt-transport-https dirmngr
sudo apt-key adv --keyserver hkp://keyserver.ubuntu.com:80 --recv-keys 3FA7E0328081BFF6A14DA29AA6A19B38D3D831EF
echo "deb https://download.mono-project.com/repo/debian stable-stretch main" | sudo tee /etc/apt/sources.list.d/mono-official-stable.list
sudo apt update
sudo apt install mono-devel

install emby

https://software.opensuse.org/download.html?project=home%3Aemby&package=emby-server

sudo su
echo 'deb http://download.opensuse.org/repositories/home:/emby/Debian_9.0/ /' > /etc/apt/sources.list.d/home:emby.list
apt-get update
apt-get install emby-server

but this ended with failure:

The following packages have unmet dependencies:
 emby-server : Depends: libembysqlite3-0 but it is not installable
               Depends: embymagick but it is not installable
E: Unable to correct problems, you have held broken packages.

Alternative option, install using Docker (ugh)

From https://hub.docker.com/r/emby/embyserver/

As root:

$ curl -sSL https://get.docker.com/ | sh
$ docker pull emby/embyserver:latest

and follwing the instructions ends in failure: standard_init_linux.go:190: exec user process caused "exec format error"

@todgru
Copy link
Author

todgru commented Jan 7, 2019

never got this to work. removed docker. trying out Plex.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment