Skip to content

Instantly share code, notes, and snippets.

@ocReaper
Created May 11, 2016 10:25
Show Gist options
  • Save ocReaper/65b7ee051a57806d119b2d065f6c23c5 to your computer and use it in GitHub Desktop.
Save ocReaper/65b7ee051a57806d119b2d065f6c23c5 to your computer and use it in GitHub Desktop.
Install Emby Server on Debian (or Raspbian)
# we need root permission
sudo su
# run the required commands
wget http://download.opensuse.org/repositories/home:emby/Debian_8.0/Release.key
apt-key add - < Release.key
echo 'deb http://download.opensuse.org/repositories/home:/emby/Debian_8.0/ /' >> /etc/apt/sources.list.d/emby-server.list
apt-get update
apt-get install emby-server
# start the emby server
sudo service emby-server start
@Jorricks
Copy link

Did you manage to fix this issue?

@ryaneneal
Copy link

I managed to install emby-server on stretch using these two commands (as su):
curl -sSL https://get.docker.com/ | sh
docker run -it --rm -v /usr/local/bin:/target emby/embyserver:armv7 instl

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