Skip to content

Instantly share code, notes, and snippets.

@mrpjevans
Last active August 15, 2021 10:54
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mrpjevans/199baf3e6f8b35f67f94294d2c878358 to your computer and use it in GitHub Desktop.
Save mrpjevans/199baf3e6f8b35f67f94294d2c878358 to your computer and use it in GitHub Desktop.
Install Plex on Raspberry Pi
#!/bin/sh
# Plex's repository uses HTTPS as the transport, so we need to install support
sudo apt update
sudo apt install apt-transport-https ca-certificates curl
# Get Plex's public key and add the Plex repo
curl https://downloads.plex.tv/plex-keys/PlexSign.key | sudo apt-key add -
echo deb https://downloads.plex.tv/repo/deb public main | sudo tee /etc/apt/sources.list.d/plexmediaserver.list
# Install the server
sudo apt update
sudo apt install plexmediaserver
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment