Raspberry Pi 3 - Plex Media Server

Опубликовано: 04 Ноябрь 2024
на канале: Richard Smith
51,144
339

Amazon do great deals on Raspberry Pi using this link.

http://amzn.to/2CoP8Yc

Video demostrates how to setup PMS on the Pi3 with working subtitles

Commands below

*****needed for https
sudo apt-get update && sudo apt-get install apt-transport-https binutils -y --force-yes

*****get the key
wget -O - https://dev2day.de/pms/dev2day-pms.gp... | sudo apt-key add -

******add the repo for the software
echo "deb https://dev2day.de/pms/ jessie main" | sudo tee /etc/apt/sources.list.d/pms.list  

*** update the packages list.
sudo apt-get update

***now install
sudo apt-get install plexmediaserver -y

*** done
sudo reboot

update plex is done via
sudo apt-get update && sudo apt-get upgrade -y

add transcoding
sudo apt-get install libexpat1 -y

rather than messing with permissions,

sudo nano /etc/default/plexmediaserver
PLEX_MEDIA_SERVER_USER=pi

sudo chown -R pi:pi /var/lib/plexmediaserver
sudo service plexmediaserver restart