Today we’re gonna add Plex on the home RPi. It’s actually quite simple.
– Add HTTPS support for APT (it might already be installed):
sudo apt-get install apt-transport-https
– Add Plex GPG key:
curl https://downloads.plex.tv/plex-keys/PlexSign.key | sudo apt-key add -
– Add the Plex repository:
echo deb https://downloads.plex.tv/repo/deb public main | sudo tee /etc/apt/sources.list.d/plexmediaserver.list
– Update APT package list:
sudo apt update
– Install Plex:
sudo apt install plexmediaserver
– Now just browse on http://<you-plex-server-ip>:32400/web
You now have a Plex media server up and running!