Plex Media Server on Debian armhf / arm64

Plex Media Server

I repackage the official armv7 release of the Plex Media Server (PMS) for Debian and Debian based distributions. So you are able to use PMS on your Raspberry Pi 2/3, ODROID C2 and many other devices. Please visit the main Raspberry Pi section in the official Plex forum for support.

If you like my work please consider a small donation:

Bitcoin donation

Follow these simple steps to install PMS on your armv7 device running Debian or a deriviate :

# become root
sudo su
# add my public key
wget -O - https://dev2day.de/pms/dev2day-pms.gpg.key | apt-key add -
# add my PMS repo
echo "deb https://dev2day.de/pms/ stretch main" >> /etc/apt/sources.list.d/pms.list
# activate https
apt-get install apt-transport-https
# update the repos
apt-get update
# install PMS
apt-get install plexmediaserver-installer

For ARM64 please use the following steps:

# become root
sudo su
# add my public key
wget -O - https://dev2day.de/pms/dev2day-pms.gpg.key | apt-key add -
# add my PMS repo
echo "deb [arch=armhf] https://dev2day.de/pms/ stretch main" >> /etc/apt/sources.list.d/pms.list
# activate https
apt-get install apt-transport-https
# enable armhf support
dpkg --add-architecture armhf 
# update the repos
apt-get update
# install PMS
apt-get install plexmediaserver-installer:armhf 

Check my github repository to get the sources of my package.