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
@cpayne14
Copy link

Hey ocReaper,
Im getting the following error
Any ideas?

Thanks in advance

root@raspberrypi:/home/pi# apt-get install emby-server
Reading package lists... Done
Building dependency tree
Reading state information... Done
Some packages could not be installed. This may mean that you have
requested an impossible situation or if you are using the unstable
distribution that some required packages have not yet been created
or been moved out of Incoming.
The following information may help to resolve the situation:

The following packages have unmet dependencies:
emby-server : Depends: mono-runtime (>= 3.0~) but it is not going to be installed
Depends: libmono-corlib4.5-cil (>= 4.0.0alpha1) but it is not going to be installed
Depends: libmono-microsoft-csharp4.0-cil (>= 1.0) but it is not going to be installed
Depends: libmono-posix4.0-cil (>= 4.0.0
alpha1) but it is not going to be installed
Depends: libmono-system-configuration4.0-cil (>= 4.0.0alpha1) but it is not going to be installed
Depends: libmono-system-core4.0-cil (>= 4.0.0
alpha1) but it is not going to be installed
Depends: libmono-system-data4.0-cil (>= 4.0.0alpha1) but it is not going to be installed
Depends: libmono-system-drawing4.0-cil (>= 3.0.6) but it is not going to be installed
Depends: libmono-system-io-compression4.0-cil (>= 3.2.1) but it is not going to be installed
Depends: libmono-system-net-http4.0-cil (>= 1.0) but it is not going to be installed
Depends: libmono-system-runtime-serialization4.0-cil (>= 4.0.0
alpha1) but it is not going to be installed
Depends: libmono-system-servicemodel4.0a-cil (>= 3.2.3) but it is not going to be installed
Depends: libmono-system-transactions4.0-cil (>= 1.0) but it is not going to be installed
Depends: libmono-system-xml-linq4.0-cil (>= 3.0.6) but it is not going to be installed
Depends: libmono-system-xml4.0-cil (>= 3.12.0) but it is not going to be installed
Depends: libmono-system4.0-cil (>= 4.0.0~alpha1) but it is not going to be installed
Depends: libembysqlite3-0 but it is not installable
Depends: embymagick but it is not installable
Depends: mono-devel (>= 4.6) but it is not going to be installed
E: Unable to correct problems, you have held broken packages.

@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